The patch titled RTC: Ratelimit "lost interrupts" message has been removed from the -mm tree. Its filename was rtc-ratelimit-lost-interrupts-message.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: RTC: Ratelimit "lost interrupts" message From: Ben Collins <bcollins@xxxxxxxxxx> We gets lots of these when the kernel is running on a hypervisor. Zach says "a guest kernel trying to get high frequency RTC will also be inaccurate, and inevitably will have unhidable interrupt lateness." Signed-off-by: Ben Collins <bcollins@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/rtc.c | 3 ++- 1 file 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 pm-do-not-require-dev-spew-to-get-pm_debug.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