Skip to content

Commit a621697

Browse files
committed
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
2 parents 23dfeae + 96c1fa0 commit a621697

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/time/tick-sched.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ static bool report_idle_softirq(void)
10451045
return false;
10461046

10471047
/* On RT, softirqs handling may be waiting on some lock */
1048-
if (!local_bh_blocked())
1048+
if (local_bh_blocked())
10491049
return false;
10501050

10511051
pr_warn("NOHZ tick-stop error: local softirq work is pending, handler #%02x!!!\n",

0 commit comments

Comments
 (0)