public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lockdep: Allow tuning tracing keys constant.
@ 2022-09-30 17:00 Ryan Huang
  2022-09-30 17:34 ` Waiman Long
  2022-10-01  2:30 ` kernel test robot
  0 siblings, 2 replies; 5+ messages in thread
From: Ryan Huang @ 2022-09-30 17:00 UTC (permalink / raw)
  To: Peter Zijlstra, Ingo Molnar, Will Deacon, Waiman Long, Boqun Feng,
	Sasha Levin
  Cc: linux-kernel, Ryan Huang

Tetsuo Handa made a change for tuning lockdep tracing capacity constants
[1]. He created following tracing config constants:
  - LOCKDEP_BITS
  - LOCKDEP_CHAINS_BITS
  - LOCKDEP_STACK_TRACE_BITS
However there is a missing one for LOCKDEP_KEYS_BITS. We can see this is
also hitting the upper limits in [2].

[1] https://github.com/torvalds/linux/commit/5dc33592e95534dc8455ce3e9baaaf3dae0fff82
[2] https://syzkaller.appspot.com/bug?id=df466e1151a7e45dd880d8c7033f1ad48acebfb4

Fixes: 5dc33592e955 ("lockdep: Allow tuning tracing capacity constants.")
Signed-off-by: Ryan Huang <tzukui@google.com>
---
 include/linux/lockdep.h | 2 +-
 lib/Kconfig.debug       | 8 ++++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h
index 1f1099dac3f05..3bb1740296559 100644
--- a/include/linux/lockdep.h
+++ b/include/linux/lockdep.h
@@ -82,7 +82,7 @@ struct lock_chain {
 	u64				chain_key;
 };
 
-#define MAX_LOCKDEP_KEYS_BITS		13
+#define MAX_LOCKDEP_KEYS_BITS		CONFIG_LOCKDEP_KEYS_BITS
 #define MAX_LOCKDEP_KEYS		(1UL << MAX_LOCKDEP_KEYS_BITS)
 #define INITIAL_CHAIN_KEY		-1
 
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index d3e5f36bb01e0..d15024bd14f1d 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -1398,6 +1398,14 @@ config LOCKDEP_CHAINS_BITS
 	help
 	  Try increasing this value if you hit "BUG: MAX_LOCKDEP_CHAINS too low!" message.
 
+config LOCKDEP_KEYS_BITS
+	int "Bitsize for MAX_LOCKDEP_KEYS"
+	depends on LOCKDEP && !LOCKDEP_SMALL
+	range 10 30
+	default 13
+	help
+	  Try increasing this value if you hit "BUG: MAX_LOCKDEP_KEYS too low!" message.
+
 config LOCKDEP_STACK_TRACE_BITS
 	int "Bitsize for MAX_STACK_TRACE_ENTRIES"
 	depends on LOCKDEP && !LOCKDEP_SMALL
-- 
2.38.0.rc1.362.ged0d419d3c-goog


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-10-27 20:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-30 17:00 [PATCH] lockdep: Allow tuning tracing keys constant Ryan Huang
2022-09-30 17:34 ` Waiman Long
2022-10-03 19:44   ` Sasha Levin
2022-10-27 20:18   ` Ryan Huang
2022-10-01  2:30 ` kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox