Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b158f53 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

Merge branch 'liblockdep-fixes' of https://github.com/sashalevin/liblockdep into core/urgent



Pull tools/lib/lockdep/ fixes from Sasha Levin.

Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parents d2a04763 7b885341
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -87,8 +87,8 @@ endif # BUILD_SRC
# We process the rest of the Makefile if this is the final invocation of make
# We process the rest of the Makefile if this is the final invocation of make
ifeq ($(skip-makefile),)
ifeq ($(skip-makefile),)


srctree		:= $(if $(BUILD_SRC),$(BUILD_SRC),$(CURDIR))
srctree		:= $(realpath $(if $(BUILD_SRC),$(BUILD_SRC),$(CURDIR)))
objtree		:= $(CURDIR)
objtree		:= $(realpath $(CURDIR))
src		:= $(srctree)
src		:= $(srctree)
obj		:= $(objtree)
obj		:= $(objtree)


@@ -112,7 +112,7 @@ export Q VERBOSE


LIBLOCKDEP_VERSION = $(LL_VERSION).$(LL_PATCHLEVEL).$(LL_EXTRAVERSION)
LIBLOCKDEP_VERSION = $(LL_VERSION).$(LL_PATCHLEVEL).$(LL_EXTRAVERSION)


INCLUDES = -I. -I/usr/local/include -I./uinclude $(CONFIG_INCLUDES)
INCLUDES = -I. -I/usr/local/include -I./uinclude -I./include $(CONFIG_INCLUDES)


# Set compile option CFLAGS if not set elsewhere
# Set compile option CFLAGS if not set elsewhere
CFLAGS ?= -g -DCONFIG_LOCKDEP -DCONFIG_STACKTRACE -DCONFIG_PROVE_LOCKING -DBITS_PER_LONG=__WORDSIZE -DLIBLOCKDEP_VERSION='"$(LIBLOCKDEP_VERSION)"' -rdynamic -O0 -g
CFLAGS ?= -g -DCONFIG_LOCKDEP -DCONFIG_STACKTRACE -DCONFIG_PROVE_LOCKING -DBITS_PER_LONG=__WORDSIZE -DLIBLOCKDEP_VERSION='"$(LIBLOCKDEP_VERSION)"' -rdynamic -O0 -g
+1 −1
Original line number Original line Diff line number Diff line
@@ -418,7 +418,7 @@ int pthread_rwlock_unlock(pthread_rwlock_t *rwlock)


__attribute__((constructor)) static void init_preload(void)
__attribute__((constructor)) static void init_preload(void)
{
{
	if (__init_state != done)
	if (__init_state == done)
		return;
		return;


#ifndef __GLIBC__
#ifndef __GLIBC__

tools/lib/lockdep/run_tests.sh

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.

+6 −0
Original line number Original line Diff line number Diff line
#ifndef __ASM_GENERIC_HASH_H
#define __ASM_GENERIC_HASH_H

/* Stub */

#endif /* __ASM_GENERIC_HASH_H */
+5 −0
Original line number Original line Diff line number Diff line
@@ -13,4 +13,9 @@ static inline int rcu_is_cpu_idle(void)
	return 1;
	return 1;
}
}


static inline bool rcu_is_watching(void)
{
	return false;
}

#endif
#endif