* [PATCH] Don't print lockdep taint message for !LOCKDEP
@ 2009-04-19 17:33 Andi Kleen
0 siblings, 0 replies; only message in thread
From: Andi Kleen @ 2009-04-19 17:33 UTC (permalink / raw)
To: peterz, mingo, linux-kernel
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@linux.intel.com>
---
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);
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-04-19 17:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-19 17:33 [PATCH] Don't print lockdep taint message for !LOCKDEP Andi Kleen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome