Skip to content

Commit

Permalink
[PATCH] Fix apparent typo CONFIG_LOCKDEP_DEBUG
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Robert P. J. Day authored and Linus Torvalds committed Feb 11, 2007
1 parent 8cddd70 commit 501b9eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/lockdep_proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ static int lockdep_stats_show(struct seq_file *m, void *v)

sum_forward_deps += count_forward_deps(class);
}
#ifdef CONFIG_LOCKDEP_DEBUG
#ifdef CONFIG_DEBUG_LOCKDEP
DEBUG_LOCKS_WARN_ON(debug_atomic_read(&nr_unused_locks) != nr_unused);
#endif
seq_printf(m, " lock-classes: %11lu [max: %lu]\n",
Expand Down

0 comments on commit 501b9eb

Please sign in to comment.