This is a note to let you know that I've just added the patch titled torture: Make torture_hrtimeout_*() use TASK_IDLE to the 6.5-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: torture-make-torture_hrtimeout_-use-task_idle.patch and it can be found in the queue-6.5 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 2ce7e761eca4d39102721b8f4435114fad029195 Author: Paul E. McKenney <paulmck@xxxxxxxxxx> Date: Mon Jun 26 14:59:29 2023 -0700 torture: Make torture_hrtimeout_*() use TASK_IDLE [ Upstream commit 872948c665f50a1446e8a34b1ed57bb0b3a9ca4a ] Given that it is expected that more code will use torture_hrtimeout_*(), including for longer timeouts, make it use TASK_IDLE instead of TASK_UNINTERRUPTIBLE. Signed-off-by: Paul E. McKenney <paulmck@xxxxxxxxxx> Stable-dep-of: cca42bd8eb1b ("rcutorture: Fix stuttering races and other issues") Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/kernel/torture.c b/kernel/torture.c index e06b03e987c9f..4a2e0512f9197 100644 --- a/kernel/torture.c +++ b/kernel/torture.c @@ -90,7 +90,7 @@ int torture_hrtimeout_ns(ktime_t baset_ns, u32 fuzzt_ns, struct torture_random_s if (trsp) hto += (torture_random(trsp) >> 3) % fuzzt_ns; - set_current_state(TASK_UNINTERRUPTIBLE); + set_current_state(TASK_IDLE); return schedule_hrtimeout(&hto, HRTIMER_MODE_REL); } EXPORT_SYMBOL_GPL(torture_hrtimeout_ns);