diff options
Diffstat (limited to 'debian/patches-rt/0162-locking-rtmutex-Make-lock_killable-work.patch')
-rw-r--r-- | debian/patches-rt/0162-locking-rtmutex-Make-lock_killable-work.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/patches-rt/0162-locking-rtmutex-Make-lock_killable-work.patch b/debian/patches-rt/0162-locking-rtmutex-Make-lock_killable-work.patch index aebd5f60e..ca490b3ca 100644 --- a/debian/patches-rt/0162-locking-rtmutex-Make-lock_killable-work.patch +++ b/debian/patches-rt/0162-locking-rtmutex-Make-lock_killable-work.patch @@ -1,8 +1,8 @@ -From 09e10e723c3bc6ceb0d1b64e0a6b3b9e2ec52225 Mon Sep 17 00:00:00 2001 +From f611e08abb2a885cc492c59b35d333ee330badab Mon Sep 17 00:00:00 2001 From: Thomas Gleixner <tglx@linutronix.de> Date: Sat, 1 Apr 2017 12:50:59 +0200 Subject: [PATCH 162/323] locking/rtmutex: Make lock_killable work -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 Locking an rt mutex killable does not work because signal handling is restricted to TASK_INTERRUPTIBLE. @@ -16,7 +16,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c -index d8755d5ef227..c3f3c23fefef 100644 +index d8755d5ef2277..c3f3c23fefef8 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c @@ -1197,18 +1197,13 @@ __rt_mutex_slowlock(struct rt_mutex *lock, int state, @@ -46,5 +46,5 @@ index d8755d5ef227..c3f3c23fefef 100644 raw_spin_unlock_irq(&lock->wait_lock); -- -2.43.0 +2.44.0 |