mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
tick/rcu: Fix bogus ratelimit condition
[ Upstream commita7e282c777] The ratelimit logic in report_idle_softirq() is broken because the exit condition is always true: static int ratelimit; if (ratelimit < 10) return false; ---> always returns here ratelimit++; ---> no chance to run Make it check for >= 10 instead. Fixes:0345691b24("tick/rcu: Stop allowing RCU_SOFTIRQ in idle") Signed-off-by: Wen Yang <wenyang.linux@foxmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/r/tencent_5AAA3EEAB42095C9B7740BE62FBF9A67E007@qq.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e7aff15ba2
commit
77cc52f1b8
@@ -1046,7 +1046,7 @@ static bool report_idle_softirq(void)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ratelimit < 10)
|
if (ratelimit >= 10)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
/* On RT, softirqs handling may be waiting on some lock */
|
/* On RT, softirqs handling may be waiting on some lock */
|
||||||
|
|||||||
Reference in New Issue
Block a user