Commit 501b9ebf43f9973c3e246c8fbd17144d81a989ef
Committed by
Linus Torvalds
1 parent
8cddd7076a
Exists in
master
and in
7 other branches
[PATCH] Fix apparent typo CONFIG_LOCKDEP_DEBUG
Replace the apparent typo CONFIG_LOCKDEP_DEBUG with the correct CONFIG_DEBUG_LOCKDEP. Signed-off-by: Robert P. J. Day <rpjday@mindspring.com> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
kernel/lockdep_proc.c
... | ... | @@ -244,7 +244,7 @@ |
244 | 244 | |
245 | 245 | sum_forward_deps += count_forward_deps(class); |
246 | 246 | } |
247 | -#ifdef CONFIG_LOCKDEP_DEBUG | |
247 | +#ifdef CONFIG_DEBUG_LOCKDEP | |
248 | 248 | DEBUG_LOCKS_WARN_ON(debug_atomic_read(&nr_unused_locks) != nr_unused); |
249 | 249 | #endif |
250 | 250 | seq_printf(m, " lock-classes: %11lu [max: %lu]\n", |