summaryrefslogtreecommitdiffstats
path: root/arch/x86_64
diff options
context:
space:
mode:
authorRoland Dreier2007-02-13 13:26:25 +0100
committerAndi Kleen2007-02-13 13:26:25 +0100
commit3e94fb8f54c5305ed472e0867cd67d53e05bfb64 (patch)
treec14b7d3bbc7c7425b92a693629330ef1d25e43f3 /arch/x86_64
parent[PATCH] x86-64: update IO-APIC dest field to 8-bit for xAPIC (diff)
downloadkernel-qcow2-linux-3e94fb8f54c5305ed472e0867cd67d53e05bfb64.tar.gz
kernel-qcow2-linux-3e94fb8f54c5305ed472e0867cd67d53e05bfb64.tar.xz
kernel-qcow2-linux-3e94fb8f54c5305ed472e0867cd67d53e05bfb64.zip
[PATCH] x86-64: avoid warning message livelock
I've seen my box paralyzed by an endless spew of rtc: lost some interrupts at 1024Hz. messages on the serial console. What seems to be happening is that something real causes an interrupt to be lost and triggers the message. But then printing the message to the serial console (from the hpet interrupt handler) takes more than 1/1024th of a second, and then some more interrupts are lost, so the message triggers again.... Fix this by adding a printk_ratelimit() before printing the warning. Signed-off-by: Roland Dreier <rolandd@cisco.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/kernel/time.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/time.c b/arch/x86_64/kernel/time.c
index 9c7fba30dac1..3cc6886f1fb7 100644
--- a/arch/x86_64/kernel/time.c
+++ b/arch/x86_64/kernel/time.c
@@ -1226,8 +1226,9 @@ static void hpet_rtc_timer_reinit(void)
if (PIE_on)
PIE_count += lost_ints;
- printk(KERN_WARNING "rtc: lost some interrupts at %ldHz.\n",
- hpet_rtc_int_freq);
+ if (printk_ratelimit())
+ printk(KERN_WARNING "rtc: lost some interrupts at %ldHz.\n",
+ hpet_rtc_int_freq);
}
}