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 | |
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')
-rw-r--r-- | kernel/Makefile | 6 | ||||
-rw-r--r-- | kernel/locking/Makefile | 9 | ||||
-rw-r--r-- | kernel/locking/mutex-debug.c (renamed from kernel/mutex-debug.c) | 0 | ||||
-rw-r--r-- | kernel/locking/mutex-debug.h (renamed from kernel/mutex-debug.h) | 0 | ||||
-rw-r--r-- | kernel/locking/mutex.c (renamed from kernel/mutex.c) | 0 | ||||
-rw-r--r-- | kernel/locking/mutex.h (renamed from kernel/mutex.h) | 0 |
6 files changed, 11 insertions, 4 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index a4d1aa8da9bc..330b14666475 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -7,7 +7,7 @@ obj-y = fork.o exec_domain.o panic.o \ | |||
7 | sysctl.o sysctl_binary.o capability.o ptrace.o timer.o user.o \ | 7 | sysctl.o sysctl_binary.o capability.o ptrace.o timer.o user.o \ |
8 | signal.o sys.o kmod.o workqueue.o pid.o task_work.o \ | 8 | signal.o sys.o kmod.o workqueue.o pid.o task_work.o \ |
9 | extable.o params.o posix-timers.o \ | 9 | extable.o params.o posix-timers.o \ |
10 | kthread.o sys_ni.o posix-cpu-timers.o mutex.o \ | 10 | kthread.o sys_ni.o posix-cpu-timers.o \ |
11 | hrtimer.o rwsem.o nsproxy.o semaphore.o \ | 11 | hrtimer.o rwsem.o nsproxy.o semaphore.o \ |
12 | notifier.o ksysfs.o cred.o reboot.o \ | 12 | notifier.o ksysfs.o cred.o reboot.o \ |
13 | async.o range.o groups.o lglock.o smpboot.o | 13 | async.o range.o groups.o lglock.o smpboot.o |
@@ -16,13 +16,12 @@ ifdef CONFIG_FUNCTION_TRACER | |||
16 | # Do not trace debug files and internal ftrace files | 16 | # Do not trace debug files and internal ftrace files |
17 | CFLAGS_REMOVE_lockdep.o = -pg | 17 | CFLAGS_REMOVE_lockdep.o = -pg |
18 | CFLAGS_REMOVE_lockdep_proc.o = -pg | 18 | CFLAGS_REMOVE_lockdep_proc.o = -pg |
19 | CFLAGS_REMOVE_mutex-debug.o = -pg | ||
20 | CFLAGS_REMOVE_rtmutex-debug.o = -pg | ||
21 | CFLAGS_REMOVE_cgroup-debug.o = -pg | 19 | CFLAGS_REMOVE_cgroup-debug.o = -pg |
22 | CFLAGS_REMOVE_irq_work.o = -pg | 20 | CFLAGS_REMOVE_irq_work.o = -pg |
23 | endif | 21 | endif |
24 | 22 | ||
25 | obj-y += sched/ | 23 | obj-y += sched/ |
24 | obj-y += locking/ | ||
26 | obj-y += power/ | 25 | obj-y += power/ |
27 | obj-y += printk/ | 26 | obj-y += printk/ |
28 | obj-y += cpu/ | 27 | obj-y += cpu/ |
@@ -34,7 +33,6 @@ obj-$(CONFIG_FREEZER) += freezer.o | |||
34 | obj-$(CONFIG_PROFILING) += profile.o | 33 | obj-$(CONFIG_PROFILING) += profile.o |
35 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | 34 | obj-$(CONFIG_STACKTRACE) += stacktrace.o |
36 | obj-y += time/ | 35 | obj-y += time/ |
37 | obj-$(CONFIG_DEBUG_MUTEXES) += mutex-debug.o | ||
38 | obj-$(CONFIG_LOCKDEP) += lockdep.o | 36 | obj-$(CONFIG_LOCKDEP) += lockdep.o |
39 | ifeq ($(CONFIG_PROC_FS),y) | 37 | ifeq ($(CONFIG_PROC_FS),y) |
40 | obj-$(CONFIG_LOCKDEP) += lockdep_proc.o | 38 | obj-$(CONFIG_LOCKDEP) += lockdep_proc.o |
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 | ||
diff --git a/kernel/mutex-debug.c b/kernel/locking/mutex-debug.c index 7e3443fe1f48..7e3443fe1f48 100644 --- a/kernel/mutex-debug.c +++ b/kernel/locking/mutex-debug.c | |||
diff --git a/kernel/mutex-debug.h b/kernel/locking/mutex-debug.h index 0799fd3e4cfa..0799fd3e4cfa 100644 --- a/kernel/mutex-debug.h +++ b/kernel/locking/mutex-debug.h | |||
diff --git a/kernel/mutex.c b/kernel/locking/mutex.c index d24105b1b794..d24105b1b794 100644 --- a/kernel/mutex.c +++ b/kernel/locking/mutex.c | |||
diff --git a/kernel/mutex.h b/kernel/locking/mutex.h index 4115fbf83b12..4115fbf83b12 100644 --- a/kernel/mutex.h +++ b/kernel/locking/mutex.h | |||