From eee80d3cd37ea7ebd6aab85c117564a4bae5bc4e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 2 Jun 2022 15:47:07 +0200 Subject: 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. --- dashboard/config/linux/bits/lockdep.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'dashboard/config/linux/bits/lockdep.yml') 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] -- cgit mrf-deployment