aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Zijlstra <peterz@infradead.org>2013-10-31 13:14:17 -0400
committerIngo Molnar <mingo@kernel.org>2013-11-06 01:55:08 -0500
commit8eddac3f103736163f49255bcb109edadea167f6 (patch)
treecd3161b76bb7a7e2614817d0ba66446676e6b677
parent01768b42dc97a67b4fb33a2535c49fc1969880df (diff)
locking: Move the lockdep code to kernel/locking/
Suggested-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/n/tip-wl7s3tta5isufzfguc23et06@git.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r--kernel/Makefile6
-rw-r--r--kernel/locking/Makefile6
-rw-r--r--kernel/locking/lockdep.c (renamed from kernel/lockdep.c)0
-rw-r--r--kernel/locking/lockdep_internals.h (renamed from kernel/lockdep_internals.h)0
-rw-r--r--kernel/locking/lockdep_proc.c (renamed from kernel/lockdep_proc.c)0
-rw-r--r--kernel/locking/lockdep_states.h (renamed from kernel/lockdep_states.h)0
6 files changed, 6 insertions, 6 deletions
diff --git a/kernel/Makefile b/kernel/Makefile
index 330b14666475..4fffd6ee42c1 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -14,8 +14,6 @@ obj-y = fork.o exec_domain.o panic.o \
14 14
15ifdef CONFIG_FUNCTION_TRACER 15ifdef CONFIG_FUNCTION_TRACER
16# Do not trace debug files and internal ftrace files 16# Do not trace debug files and internal ftrace files
17CFLAGS_REMOVE_lockdep.o = -pg
18CFLAGS_REMOVE_lockdep_proc.o = -pg
19CFLAGS_REMOVE_cgroup-debug.o = -pg 17CFLAGS_REMOVE_cgroup-debug.o = -pg
20CFLAGS_REMOVE_irq_work.o = -pg 18CFLAGS_REMOVE_irq_work.o = -pg
21endif 19endif
@@ -33,10 +31,6 @@ obj-$(CONFIG_FREEZER) += freezer.o
33obj-$(CONFIG_PROFILING) += profile.o 31obj-$(CONFIG_PROFILING) += profile.o
34obj-$(CONFIG_STACKTRACE) += stacktrace.o 32obj-$(CONFIG_STACKTRACE) += stacktrace.o
35obj-y += time/ 33obj-y += time/
36obj-$(CONFIG_LOCKDEP) += lockdep.o
37ifeq ($(CONFIG_PROC_FS),y)
38obj-$(CONFIG_LOCKDEP) += lockdep_proc.o
39endif
40obj-$(CONFIG_FUTEX) += futex.o 34obj-$(CONFIG_FUTEX) += futex.o
41ifeq ($(CONFIG_COMPAT),y) 35ifeq ($(CONFIG_COMPAT),y)
42obj-$(CONFIG_FUTEX) += futex_compat.o 36obj-$(CONFIG_FUTEX) += futex_compat.o
diff --git a/kernel/locking/Makefile b/kernel/locking/Makefile
index fe8bd58b22f8..c103599fc1ba 100644
--- a/kernel/locking/Makefile
+++ b/kernel/locking/Makefile
@@ -2,8 +2,14 @@
2obj-y += mutex.o 2obj-y += mutex.o
3 3
4ifdef CONFIG_FUNCTION_TRACER 4ifdef CONFIG_FUNCTION_TRACER
5CFLAGS_REMOVE_lockdep.o = -pg
6CFLAGS_REMOVE_lockdep_proc.o = -pg
5CFLAGS_REMOVE_mutex-debug.o = -pg 7CFLAGS_REMOVE_mutex-debug.o = -pg
6CFLAGS_REMOVE_rtmutex-debug.o = -pg 8CFLAGS_REMOVE_rtmutex-debug.o = -pg
7endif 9endif
8 10
9obj-$(CONFIG_DEBUG_MUTEXES) += mutex-debug.o 11obj-$(CONFIG_DEBUG_MUTEXES) += mutex-debug.o
12obj-$(CONFIG_LOCKDEP) += lockdep.o
13ifeq ($(CONFIG_PROC_FS),y)
14obj-$(CONFIG_LOCKDEP) += lockdep_proc.o
15endif
diff --git a/kernel/lockdep.c b/kernel/locking/lockdep.c
index 4e8e14c34e42..4e8e14c34e42 100644
--- a/kernel/lockdep.c
+++ b/kernel/locking/lockdep.c
diff --git a/kernel/lockdep_internals.h b/kernel/locking/lockdep_internals.h
index 4f560cfedc8f..4f560cfedc8f 100644
--- a/kernel/lockdep_internals.h
+++ b/kernel/locking/lockdep_internals.h
diff --git a/kernel/lockdep_proc.c b/kernel/locking/lockdep_proc.c
index 09220656d888..09220656d888 100644
--- a/kernel/lockdep_proc.c
+++ b/kernel/locking/lockdep_proc.c
diff --git a/kernel/lockdep_states.h b/kernel/locking/lockdep_states.h
index 995b0cc2b84c..995b0cc2b84c 100644
--- a/kernel/lockdep_states.h
+++ b/kernel/locking/lockdep_states.h