]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/panic.c
[PATCH] MTD NAND: Fix ams-delta after core conversion
[linux-2.6-omap-h63xx.git] / kernel / panic.c
index ab13f0f668b53efa359233c7c6829e08683f4b65..9b8dcfd1ca931e6f728c79655e4edead123a0f11 100644 (file)
@@ -18,6 +18,7 @@
 #include <linux/interrupt.h>
 #include <linux/nmi.h>
 #include <linux/kexec.h>
+#include <linux/debug_locks.h>
 
 int panic_on_oops;
 int tainted;
@@ -172,6 +173,7 @@ const char *print_tainted(void)
 
 void add_taint(unsigned flag)
 {
+       debug_locks_off(); /* can't trust the integrity of the kernel anymore */
        tainted |= flag;
 }
 EXPORT_SYMBOL(add_taint);
@@ -256,6 +258,7 @@ int oops_may_print(void)
  */
 void oops_enter(void)
 {
+       debug_locks_off(); /* can't trust the integrity of the kernel anymore */
        do_oops_enter_exit();
 }