Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'timers-urgent-2023-09-02' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull timer fix from Ingo Molnar:
"Fix false positive 'softirq work is pending' messages on -rt kernels,
caused by a buggy factoring-out of existing code"

* tag 'timers-urgent-2023-09-02' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
tick/rcu: Fix false positive "softirq work is pending" messages

+1 -1
+1 -1
kernel/time/tick-sched.c
··· 1045 1045 return false; 1046 1046 1047 1047 /* On RT, softirqs handling may be waiting on some lock */ 1048 - if (!local_bh_blocked()) 1048 + if (local_bh_blocked()) 1049 1049 return false; 1050 1050 1051 1051 pr_warn("NOHZ tick-stop error: local softirq work is pending, handler #%02x!!!\n",