The patch titled ] RTC: Ratelimit "lost interrupts" message has been added to the -mm tree. Its filename is rtc-ratelimit-lost-interrupts-message.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ] RTC: Ratelimit "lost interrupts" message From: Ben Collins <bcollins@xxxxxxxxxx> Signed-off-by: Ben Collins <bcollins@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/rtc.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/char/rtc.c~rtc-ratelimit-lost-interrupts-message drivers/char/rtc.c --- a/drivers/char/rtc.c~rtc-ratelimit-lost-interrupts-message +++ a/drivers/char/rtc.c @@ -1159,7 +1159,8 @@ static void rtc_dropped_irq(unsigned lon spin_unlock_irq(&rtc_lock); - printk(KERN_WARNING "rtc: lost some interrupts at %ldHz.\n", freq); + if (printk_ratelimit()) + printk(KERN_WARNING "rtc: lost some interrupts at %ldHz.\n", freq); /* Now we have new data */ wake_up_interruptible(&rtc_wait); _ Patches currently in -mm which might be from bcollins@xxxxxxxxxx are origin.patch avoid-zero-size-allocation-in-cache_k8_northbridges.patch cleanup-libata-hpa-support.patch hciusb-initialize-the-broadcom-usb-bluetooth-device-in-dell-laptops.patch pm-do-not-require-dev-spew-to-get-pm_debug.patch rtc-ratelimit-lost-interrupts-message.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html