aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/config/linux/bits/lockdep.yml
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2022-06-02 15:47:07 +0200
committerDmitry Vyukov <dvyukov@google.com>2022-06-03 09:02:43 +0200
commiteee80d3cd37ea7ebd6aab85c117564a4bae5bc4e (patch)
treed556d1f767ee15badc14b0f0f9a14609a9330499 /dashboard/config/linux/bits/lockdep.yml
parent02dddea803b3dcfa0e472bb94d3e540e8f1b457b (diff)
dashboard/config/linux: increase LOCKDEP size consts
We are still seeing some of: BUG: MAX_LOCKDEP_CHAINS too low! BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low! BUG: MAX_LOCKDEP_ENTRIES too low! Bump LOCKDEP consts by 1.
Diffstat (limited to 'dashboard/config/linux/bits/lockdep.yml')
-rw-r--r--dashboard/config/linux/bits/lockdep.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/dashboard/config/linux/bits/lockdep.yml b/dashboard/config/linux/bits/lockdep.yml
index be271b294..ca49ff134 100644
--- a/dashboard/config/linux/bits/lockdep.yml
+++ b/dashboard/config/linux/bits/lockdep.yml
@@ -3,8 +3,11 @@
config:
- LOCKDEP
- - LOCKDEP_BITS: [16, v5.13]
- - LOCKDEP_CHAINS_BITS: [17, v5.13]
+ # This helps to preent "BUG: MAX_LOCKDEP_ENTRIES too low!"
+ - LOCKDEP_BITS: [17, v5.13]
+ # This helps to prevent "BUG: MAX_LOCKDEP_CHAINS too low!"
+ # and "BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low!"
+ - LOCKDEP_CHAINS_BITS: [18, v5.13]
- LOCKDEP_STACK_TRACE_BITS: [20, v5.13]
- LOCKDEP_STACK_TRACE_HASH_BITS: [14, v5.13]
- LOCKDEP_CIRCULAR_QUEUE_BITS: [12, v5.13]