From 3134b37f0ab0b36b36f6b94e842ca007d35108b6 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 14 Apr 2021 10:09:00 +0200 Subject: dashboard/config/linux: tune LOCKDEP capacity We are seeing the following warnings from LOCKDEP: BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low! BUG: MAX_LOCKDEP_CHAINS too low! BUG: MAX_LOCKDEP_ENTRIES too low! Increase the corresponding capacity constants. --- dashboard/config/linux/bits/debug.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'dashboard/config/linux/bits/debug.yml') diff --git a/dashboard/config/linux/bits/debug.yml b/dashboard/config/linux/bits/debug.yml index b50a1c8f0..b83eec837 100644 --- a/dashboard/config/linux/bits/debug.yml +++ b/dashboard/config/linux/bits/debug.yml @@ -6,8 +6,12 @@ config: # Instances that use nonoise also ignore WARNINGs, so they don't want panic_on_warn. - CMDLINE: [append, "panic_on_warn=1"] - - LOCKDEP + - LOCKDEP_BITS: [16, linux-next] + - LOCKDEP_CHAINS_BITS: [17, linux-next] + - LOCKDEP_STACK_TRACE_BITS: [19, linux-next] + - LOCKDEP_STACK_TRACE_HASH_BITS: [14, linux-next] + - LOCKDEP_CIRCULAR_QUEUE_BITS: [12, linux-next] - PROVE_LOCKING - DEBUG_ATOMIC_SLEEP - PROVE_RCU -- cgit mrf-deployment