Commit 9eeba6138cefc0435695463ddadb0d95e0a6bcd2

Authored by Frederic Weisbecker
Committed by Ingo Molnar
1 parent 066123a535

lockdep: warn about lockdep disabling after kernel taint

Impact: provide useful missing info for developers

Kernel taint can occur in several situations such as warnings,
load of prorietary or staging modules, bad page, etc...

But when such taint happens, a developer might still be working on
the kernel, expecting that lockdep is still enabled. But a taint
disables lockdep without ever warning about it.
Such a kernel behaviour doesn't really help for kernel development.

This patch adds this missing warning.

Since the taint is done most of the time after the main message that
explain the real source issue, it seems safe to warn about it inside
add_taint() so that it appears at last, without hurting the main
information.

v2: Use a generic helper to disable lockdep instead of an
    open coded xchg().

Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <1239412638-6739-1-git-send-email-fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 3 changed files with 16 additions and 3 deletions Side-by-side Diff

include/linux/debug_locks.h
... ... @@ -2,11 +2,18 @@
2 2 #define __LINUX_DEBUG_LOCKING_H
3 3  
4 4 #include <linux/kernel.h>
  5 +#include <asm/atomic.h>
5 6  
6 7 struct task_struct;
7 8  
8 9 extern int debug_locks;
9 10 extern int debug_locks_silent;
  11 +
  12 +
  13 +static inline int __debug_locks_off(void)
  14 +{
  15 + return xchg(&debug_locks, 0);
  16 +}
10 17  
11 18 /*
12 19 * Generic 'turn off all lock debugging' function:
... ... @@ -213,8 +213,14 @@
213 213  
214 214 void add_taint(unsigned flag)
215 215 {
216   - /* can't trust the integrity of the kernel anymore: */
217   - debug_locks = 0;
  216 + /*
  217 + * Can't trust the integrity of the kernel anymore.
  218 + * We don't call directly debug_locks_off() because the issue
  219 + * is not necessarily serious enough to set oops_in_progress to 1
  220 + */
  221 + if (__debug_locks_off())
  222 + printk(KERN_WARNING "Disabling lockdep due to kernel taint\n");
  223 +
218 224 set_bit(flag, &tainted_mask);
219 225 }
220 226 EXPORT_SYMBOL(add_taint);
... ... @@ -36,7 +36,7 @@
36 36 */
37 37 int debug_locks_off(void)
38 38 {
39   - if (xchg(&debug_locks, 0)) {
  39 + if (__debug_locks_off()) {
40 40 if (!debug_locks_silent) {
41 41 oops_in_progress = 1;
42 42 console_verbose();