[PATCH] Don't print lockdep taint message for !LOCKDEP

From: Andi Kleen
Date: Sun Apr 19 2009 - 13:33:55 EST


Don't print lockdep taint message for !LOCKDEP

I was surprised to see a

Disabling lockdep due to kernel taint

message in my lockdep disabled kernel. This patch ifdefs this message
to not be printed when lockdep is not enabled.

BTW in my case it was due to a thermal event. I'm not sure it's really
needed to disable lockdep on thermal events, but I left this alone for
now.

Signed-off-by: Andi Kleen <ak@xxxxxxxxxxxxxxx>

---
kernel/panic.c | 2 ++
1 file changed, 2 insertions(+)

Index: linux-2.6.30-rc2-ak/kernel/panic.c
===================================================================
--- linux-2.6.30-rc2-ak.orig/kernel/panic.c 2009-04-15 11:14:36.000000000 +0200
+++ linux-2.6.30-rc2-ak/kernel/panic.c 2009-04-19 19:29:07.000000000 +0200
@@ -213,6 +213,7 @@

void add_taint(unsigned flag)
{
+#ifdef CONFIG_LOCKDEP
/*
* Can't trust the integrity of the kernel anymore.
* We don't call directly debug_locks_off() because the issue
@@ -222,6 +223,7 @@
*/
if (flag != TAINT_CRAP && flag != TAINT_WARN && __debug_locks_off())
printk(KERN_WARNING "Disabling lockdep due to kernel taint\n");
+#endif

set_bit(flag, &tainted_mask);
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/