diff options
-rw-r--r-- | kernel/locking/lockdep.c | 4 | ||||
-rw-r--r-- | lib/Kconfig.debug | 15 |
2 files changed, 19 insertions, 0 deletions
diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c index 160b5d6df7cb..db933d063bfc 100644 --- a/kernel/locking/lockdep.c +++ b/kernel/locking/lockdep.c | |||
@@ -76,7 +76,11 @@ module_param(lock_stat, int, 0644); | |||
76 | #define lock_stat 0 | 76 | #define lock_stat 0 |
77 | #endif | 77 | #endif |
78 | 78 | ||
79 | #ifdef CONFIG_BOOTPARAM_LOCKDEP_CROSSRELEASE_FULLSTACK | ||
80 | static int crossrelease_fullstack = 1; | ||
81 | #else | ||
79 | static int crossrelease_fullstack; | 82 | static int crossrelease_fullstack; |
83 | #endif | ||
80 | static int __init allow_crossrelease_fullstack(char *str) | 84 | static int __init allow_crossrelease_fullstack(char *str) |
81 | { | 85 | { |
82 | crossrelease_fullstack = 1; | 86 | crossrelease_fullstack = 1; |
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index c1e720a22c71..2b439a515c30 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -1179,6 +1179,21 @@ config LOCKDEP_COMPLETIONS | |||
1179 | A deadlock caused by wait_for_completion() and complete() can be | 1179 | A deadlock caused by wait_for_completion() and complete() can be |
1180 | detected by lockdep using crossrelease feature. | 1180 | detected by lockdep using crossrelease feature. |
1181 | 1181 | ||
1182 | config BOOTPARAM_LOCKDEP_CROSSRELEASE_FULLSTACK | ||
1183 | bool "Enable the boot parameter, crossrelease_fullstack" | ||
1184 | depends on LOCKDEP_CROSSRELEASE | ||
1185 | default n | ||
1186 | help | ||
1187 | The lockdep "cross-release" feature needs to record stack traces | ||
1188 | (of calling functions) for all acquisitions, for eventual later | ||
1189 | use during analysis. By default only a single caller is recorded, | ||
1190 | because the unwind operation can be very expensive with deeper | ||
1191 | stack chains. | ||
1192 | |||
1193 | However a boot parameter, crossrelease_fullstack, was | ||
1194 | introduced since sometimes deeper traces are required for full | ||
1195 | analysis. This option turns on the boot parameter. | ||
1196 | |||
1182 | config DEBUG_LOCKDEP | 1197 | config DEBUG_LOCKDEP |
1183 | bool "Lock dependency engine debugging" | 1198 | bool "Lock dependency engine debugging" |
1184 | depends on DEBUG_KERNEL && LOCKDEP | 1199 | depends on DEBUG_KERNEL && LOCKDEP |