From: Heiko Carstens <heiko.carstens@de.ibm.com>
To: Peter Zijlstra <a.p.zijlstra@chello.nl>,
Ingo Molnar <mingo@elte.hu>,
Frederic Weisbecker <fweisbec@gmail.com>,
Paul Mackerras <paulus@samba.org>,
Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [BUG] "perf top" results in "NOHZ: local_softirq_pending 100"
Date: Tue, 7 Dec 2010 14:29:51 +0100 [thread overview]
Message-ID: <20101207132951.GB10927@osiris.boeblingen.de.ibm.com> (raw)
In-Reply-To: <20101207124448.GA10927@osiris.boeblingen.de.ibm.com>
On Tue, Dec 07, 2010 at 01:44:48PM +0100, Heiko Carstens wrote:
> While playing around with perf I realized that "perf top" immediatly results
> in a "NOHZ: local_softirq_pending 100" message to the console.
>
> 0x100 means that a HRTIMER_SOFTIRQ is pending when the cpu tries to disable
> the tick.
> In perf_event.c we have a call to __hrtimer_start_range_ns() in
> perf_swevent_start_hrtimer() where its wakeup parameter is zero.
> __hrtimer_start_range_ns() in turn will call hrtimer_enqueue_reprogram()
> which will call __raise_softirq_irqoff(HRTIMER_SOFTIRQ) (since wakeup is
> zero).
> That means that just the HRTIMER_SOFTIRQ bit gets set in the softirq
> pending field, but wakeup_softirqd() doesn't get called.
>
> As far as I could see this function gets called from process context with
> a spinlock held and hence we don't have any guarantee that this pending
> softirq get executed before the idle task gets scheduled and tries to
> disable the tick.
>
> The easiest fix would be to set wakeup to one (see patch below), but I guess
> there is a reason why its zero. Anybody?
>
> ---
> kernel/perf_event.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/perf_event.c b/kernel/perf_event.c
> index eac7e33..958b3e0 100644
> --- a/kernel/perf_event.c
> +++ b/kernel/perf_event.c
> @@ -4942,7 +4942,7 @@ static void perf_swevent_start_hrtimer(struct perf_event *event)
> }
> __hrtimer_start_range_ns(&hwc->hrtimer,
> ns_to_ktime(period), 0,
> - HRTIMER_MODE_REL_PINNED, 0);
> + HRTIMER_MODE_REL_PINNED, 1);
Ah. With this patch "perf record" might deadlock.
That's the reason why wakeup is zero. Tough luck.
next prev parent reply other threads:[~2010-12-07 13:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-07 12:44 Heiko Carstens
2010-12-07 13:29 ` Heiko Carstens [this message]
2010-12-07 13:51 ` Peter Zijlstra
2010-12-07 14:07 ` Thomas Gleixner
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=20101207132951.GB10927@osiris.boeblingen.de.ibm.com \
--to=heiko.carstens@de.ibm.com \
--cc=a.p.zijlstra@chello.nl \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=paulus@samba.org \
--cc=tglx@linutronix.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®