Update r332860 by changing the default from suppressing post-panic
assertions to not suppressing post-panic assertions. There are some post-panic assertions that are valuable and we shouldn't default to disabling them. However, when a user trips over them, the user can still adjust the tunable/sysctl to suppress them temporarily to get conduct troubleshooting (e.g. get a core dump). Reported by: cem, markj
This commit is contained in:
parent
b543c98cab
commit
18959b695d
@ -642,7 +642,7 @@ static int kassert_do_log = 1;
|
||||
static int kassert_log_pps_limit = 4;
|
||||
static int kassert_log_mute_at = 0;
|
||||
static int kassert_log_panic_at = 0;
|
||||
static int kassert_suppress_in_panic = 1;
|
||||
static int kassert_suppress_in_panic = 0;
|
||||
static int kassert_warnings = 0;
|
||||
|
||||
SYSCTL_NODE(_debug, OID_AUTO, kassert, CTLFLAG_RW, NULL, "kassert options");
|
||||
|
Loading…
Reference in New Issue
Block a user