linux/debian/patches-rt/0240-x86-lazy-preempt-prope...

37 lines
1.4 KiB
Diff
Raw Normal View History

2020-08-28 04:53:35 +00:00
From b1ee2a3de2cff388f708279f7f832ba76782e9ef Mon Sep 17 00:00:00 2001
Message-Id: <b1ee2a3de2cff388f708279f7f832ba76782e9ef.1596234184.git.zanussi@kernel.org>
In-Reply-To: <378ee68279f6a7631221f2670a9298620148690d.1596234183.git.zanussi@kernel.org>
References: <378ee68279f6a7631221f2670a9298620148690d.1596234183.git.zanussi@kernel.org>
2019-02-27 18:51:46 +00:00
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date: Mon, 18 Feb 2019 16:57:09 +0100
2020-07-15 20:05:29 +00:00
Subject: [PATCH 240/329] x86: lazy-preempt: properly check against
2019-04-08 23:49:20 +00:00
preempt-mask
2020-08-28 04:53:35 +00:00
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.135-rt60.tar.xz
2019-02-27 18:51:46 +00:00
should_resched() should check against preempt_offset after unmasking the
need-resched-bit. Otherwise should_resched() won't work for
preempt_offset != 0 and lazy-preempt set.
Cc: stable-rt@vger.kernel.org
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
2019-04-08 23:49:20 +00:00
arch/x86/include/asm/preempt.h | 2 +-
2019-02-27 18:51:46 +00:00
1 file changed, 1 insertion(+), 1 deletion(-)
2019-04-08 23:49:20 +00:00
diff --git a/arch/x86/include/asm/preempt.h b/arch/x86/include/asm/preempt.h
index 22992c837795..f66708779274 100644
2019-02-27 18:51:46 +00:00
--- a/arch/x86/include/asm/preempt.h
+++ b/arch/x86/include/asm/preempt.h
2019-04-08 23:49:20 +00:00
@@ -118,7 +118,7 @@ static __always_inline bool should_resched(int preempt_offset)
2019-02-27 18:51:46 +00:00
/* preempt count == 0 ? */
tmp &= ~PREEMPT_NEED_RESCHED;
- if (tmp)
+ if (tmp != preempt_offset)
return false;
if (current_thread_info()->preempt_lazy_count)
return false;
2020-01-03 23:36:11 +00:00
--
2020-06-22 13:14:16 +00:00
2.17.1
2020-01-03 23:36:11 +00:00