From: Andrew Morton <akpm@osdl.org>
To: Matthias Urlichs <smurf@smurf.noris.de>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Rate-limit the RTC 'missed interrupts' warning.
Date: Fri, 4 Aug 2006 22:49:13 -0700 [thread overview]
Message-ID: <20060804224913.d4fb3bef.akpm@osdl.org> (raw)
In-Reply-To: <E1G9EuX-0001AR-0f@smurf.noris.de>
On Sat, 5 Aug 2006 01:53:08 +0200
Matthias Urlichs <smurf@smurf.noris.de> wrote:
> Cc: recipient list not shown: ;
I'm assuming there was supposed to be a mailing list there.
> Subject: [PATCH] Rate-limit the RTC 'missed interrupts' warning.
> Date: Sat, 5 Aug 2006 01:53:08 +0200
>
> Signed-Off-By: Matthias Urlichs <smurf@smurf.noris.de>
> ---
> drivers/char/rtc.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/char/rtc.c b/drivers/char/rtc.c
> index 7cac6d0..fbd214f 100644
> --- a/drivers/char/rtc.c
> +++ b/drivers/char/rtc.c
> @@ -1131,7 +1131,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);
What is causing your machine to lose so many RTC interrupts?
next parent reply other threads:[~2006-08-05 5:49 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <E1G9EuX-0001AR-0f@smurf.noris.de>
2006-08-05 5:49 ` Andrew Morton [this message]
2006-08-05 6:46 ` [PATCH] Rate-limit the RTC 'missed interrupts' warning Matthias Urlichs
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060804224913.d4fb3bef.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=smurf@smurf.noris.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.