summaryrefslogtreecommitdiffstats
path: root/kernel/locking/Makefile
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2021-08-15 23:27:57 +0200
committerIngo Molnar <mingo@kernel.org>2021-08-17 17:03:07 +0200
commit531ae4b06a737ed5539cd75dc6f6b9a28f900bba (patch)
treeeefc97f984dff0787c364c028eb2ee2ddd29080c /kernel/locking/Makefile
parent709e0b62869f625afd18edd79f190c38cb39dfb2 (diff)
downloadlinux-stable-531ae4b06a737ed5539cd75dc6f6b9a28f900bba.tar.gz
linux-stable-531ae4b06a737ed5539cd75dc6f6b9a28f900bba.tar.bz2
linux-stable-531ae4b06a737ed5539cd75dc6f6b9a28f900bba.zip
locking/rtmutex: Split API from implementation
Prepare for reusing the inner functions of rtmutex for RT lock substitutions: introduce kernel/locking/rtmutex_api.c and move them there. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Link: https://lore.kernel.org/r/20210815211302.726560996@linutronix.de
Diffstat (limited to 'kernel/locking/Makefile')
-rw-r--r--kernel/locking/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/locking/Makefile b/kernel/locking/Makefile
index 3572808223e4..269f55e1e431 100644
--- a/kernel/locking/Makefile
+++ b/kernel/locking/Makefile
@@ -24,7 +24,7 @@ obj-$(CONFIG_SMP) += spinlock.o
obj-$(CONFIG_LOCK_SPIN_ON_OWNER) += osq_lock.o
obj-$(CONFIG_PROVE_LOCKING) += spinlock.o
obj-$(CONFIG_QUEUED_SPINLOCKS) += qspinlock.o
-obj-$(CONFIG_RT_MUTEXES) += rtmutex.o
+obj-$(CONFIG_RT_MUTEXES) += rtmutex_api.o
obj-$(CONFIG_DEBUG_SPINLOCK) += spinlock.o
obj-$(CONFIG_DEBUG_SPINLOCK) += spinlock_debug.o
obj-$(CONFIG_QUEUED_RWLOCKS) += qrwlock.o