diff options
author | Peter Zijlstra <peterz@infradead.org> | 2013-10-31 13:11:53 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-11-06 01:55:07 -0500 |
commit | 01768b42dc97a67b4fb33a2535c49fc1969880df (patch) | |
tree | 448a1aff2286e8e9752124964e725d7bd5d3dba8 /kernel/locking/Makefile | |
parent | c90423d1de12fbeaf0c898e1db0e962de347302b (diff) |
locking: Move the mutex 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-1ditvncg30dgbpvrz2bxfmke@git.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/locking/Makefile')
-rw-r--r-- | kernel/locking/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/locking/Makefile b/kernel/locking/Makefile new file mode 100644 index 000000000000..fe8bd58b22f8 --- /dev/null +++ b/kernel/locking/Makefile | |||
@@ -0,0 +1,9 @@ | |||
1 | |||
2 | obj-y += mutex.o | ||
3 | |||
4 | ifdef CONFIG_FUNCTION_TRACER | ||
5 | CFLAGS_REMOVE_mutex-debug.o = -pg | ||
6 | CFLAGS_REMOVE_rtmutex-debug.o = -pg | ||
7 | endif | ||
8 | |||
9 | obj-$(CONFIG_DEBUG_MUTEXES) += mutex-debug.o | ||