Quieten hangcheck driver Every time hangcheck is compiled in it eventually spams the kernel log with: Hangcheck: hangcheck value past margin! This confuses users who usually think it is a generic kernel bug. Just remove the message. As far as I can see it is useless. The only value of hangcheck is to reboot the machine if configured. Cc: joel.becker@oracle.com Signed-off-by: Andi Kleen drivers/char/hangcheck-timer.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: linux/drivers/char/hangcheck-timer.c =================================================================== --- linux.orig/drivers/char/hangcheck-timer.c +++ linux/drivers/char/hangcheck-timer.c @@ -174,7 +174,7 @@ static void hangcheck_fire(unsigned long printk(KERN_CRIT "Hangcheck: hangcheck is restarting the machine.\n"); emergency_restart(); } else { - printk(KERN_CRIT "Hangcheck: hangcheck value past margin!\n"); + /* Do nothing - don't spam the kernel log */ } } mod_timer(&hangcheck_ticktock, jiffies + (hangcheck_tick*HZ));