diff options
Diffstat (limited to 'debian/patches-rt/0172-locking-rtmutex-add-mutex-implementation-based-on-rt.patch')
-rw-r--r-- | debian/patches-rt/0172-locking-rtmutex-add-mutex-implementation-based-on-rt.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/patches-rt/0172-locking-rtmutex-add-mutex-implementation-based-on-rt.patch b/debian/patches-rt/0172-locking-rtmutex-add-mutex-implementation-based-on-rt.patch index 655fd8534..311dc015a 100644 --- a/debian/patches-rt/0172-locking-rtmutex-add-mutex-implementation-based-on-rt.patch +++ b/debian/patches-rt/0172-locking-rtmutex-add-mutex-implementation-based-on-rt.patch @@ -1,9 +1,9 @@ -From c363a86a2fab38d43a50a8841e2b6d64b87ae69b Mon Sep 17 00:00:00 2001 +From 7c27acd6d2b3883ec5d9b41e8d9ca3e65b9fba82 Mon Sep 17 00:00:00 2001 From: Thomas Gleixner <tglx@linutronix.de> Date: Thu, 12 Oct 2017 17:17:03 +0200 Subject: [PATCH 172/323] locking/rtmutex: add mutex implementation based on rtmutex -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patches-5.10.204-rt100.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patches-5.10.215-rt107.tar.xz Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> @@ -16,7 +16,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> diff --git a/include/linux/mutex_rt.h b/include/linux/mutex_rt.h new file mode 100644 -index 000000000000..f0b2e07cd5c5 +index 0000000000000..f0b2e07cd5c57 --- /dev/null +++ b/include/linux/mutex_rt.h @@ -0,0 +1,130 @@ @@ -152,7 +152,7 @@ index 000000000000..f0b2e07cd5c5 +#endif diff --git a/kernel/locking/mutex-rt.c b/kernel/locking/mutex-rt.c new file mode 100644 -index 000000000000..2b849e6b9b4a +index 0000000000000..2b849e6b9b4ae --- /dev/null +++ b/kernel/locking/mutex-rt.c @@ -0,0 +1,224 @@ @@ -381,5 +381,5 @@ index 000000000000..2b849e6b9b4a +} +EXPORT_SYMBOL(atomic_dec_and_mutex_lock); -- -2.43.0 +2.44.0 |