diff options
| author | Eric Paris <eparis@redhat.com> | 2014-03-07 11:41:32 -0500 |
|---|---|---|
| committer | Eric Paris <eparis@redhat.com> | 2014-03-07 11:41:32 -0500 |
| commit | b7d3622a39fde7658170b7f3cf6c6889bb8db30d (patch) | |
| tree | 64f4e781ecb2a85d675e234072b988560bcd25f1 /kernel/locking/Makefile | |
| parent | f3411cb2b2e396a41ed3a439863f028db7140a34 (diff) | |
| parent | d8ec26d7f8287f5788a494f56e8814210f0e64be (diff) | |
Merge tag 'v3.13' into for-3.15
Linux 3.13
Conflicts:
include/net/xfrm.h
Simple merge where v3.13 removed 'extern' from definitions and the audit
tree did s/u32/unsigned int/ to the same definitions.
Diffstat (limited to 'kernel/locking/Makefile')
| -rw-r--r-- | kernel/locking/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/kernel/locking/Makefile b/kernel/locking/Makefile new file mode 100644 index 000000000000..baab8e5e7f66 --- /dev/null +++ b/kernel/locking/Makefile | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | |||
| 2 | obj-y += mutex.o semaphore.o rwsem.o lglock.o | ||
| 3 | |||
| 4 | ifdef CONFIG_FUNCTION_TRACER | ||
| 5 | CFLAGS_REMOVE_lockdep.o = -pg | ||
| 6 | CFLAGS_REMOVE_lockdep_proc.o = -pg | ||
| 7 | CFLAGS_REMOVE_mutex-debug.o = -pg | ||
| 8 | CFLAGS_REMOVE_rtmutex-debug.o = -pg | ||
| 9 | endif | ||
| 10 | |||
| 11 | obj-$(CONFIG_DEBUG_MUTEXES) += mutex-debug.o | ||
| 12 | obj-$(CONFIG_LOCKDEP) += lockdep.o | ||
| 13 | ifeq ($(CONFIG_PROC_FS),y) | ||
| 14 | obj-$(CONFIG_LOCKDEP) += lockdep_proc.o | ||
| 15 | endif | ||
| 16 | obj-$(CONFIG_SMP) += spinlock.o | ||
| 17 | obj-$(CONFIG_PROVE_LOCKING) += spinlock.o | ||
| 18 | obj-$(CONFIG_RT_MUTEXES) += rtmutex.o | ||
| 19 | obj-$(CONFIG_DEBUG_RT_MUTEXES) += rtmutex-debug.o | ||
| 20 | obj-$(CONFIG_RT_MUTEX_TESTER) += rtmutex-tester.o | ||
| 21 | obj-$(CONFIG_DEBUG_SPINLOCK) += spinlock.o | ||
| 22 | obj-$(CONFIG_DEBUG_SPINLOCK) += spinlock_debug.o | ||
| 23 | obj-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o | ||
| 24 | obj-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem-xadd.o | ||
| 25 | obj-$(CONFIG_PERCPU_RWSEM) += percpu-rwsem.o | ||
