20-kdump-steamos.conf: don't panic on RCU stalls
I found a small RCU stall in v6.1-rc3 that is quite insignificant, but panick'ed the system. I feel we're in a risk to have it enabled by default, seems better to stay in the "safe" side of the trade-off and eventually lose some report than to panic in meaningless stall and affect user experience. Signed-off-by: Guilherme G. Piccoli <gpiccoli@igalia.com>
This commit is contained in:
@ -10,8 +10,6 @@
|
|||||||
|
|
||||||
kernel.panic_on_oops = 1
|
kernel.panic_on_oops = 1
|
||||||
|
|
||||||
kernel.panic_on_rcu_stall = 1
|
|
||||||
|
|
||||||
kernel.softlockup_panic = 1
|
kernel.softlockup_panic = 1
|
||||||
|
|
||||||
kernel.hardlockup_panic = 1
|
kernel.hardlockup_panic = 1
|
||||||
@ -29,3 +27,9 @@ kernel.panic_print = 71
|
|||||||
# Currently disabled, since SteamOS might get stuck while
|
# Currently disabled, since SteamOS might get stuck while
|
||||||
# doing installation on drive using calamares.
|
# doing installation on drive using calamares.
|
||||||
kernel.hung_task_panic = 0
|
kernel.hung_task_panic = 0
|
||||||
|
|
||||||
|
# A bit risky to panic on that, might cause undesirable panics
|
||||||
|
# due to small stalls. A trade-off is if we indeed have a severe
|
||||||
|
# bug causing a (long) RCU stall, we'd not panic and have it
|
||||||
|
# reported. But seems the risk is bigger...
|
||||||
|
kernel.panic_on_rcu_stall = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user