public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Peter Zijlstra <peterz@infradead.org>
To: Stephane Eranian <eranian@google.com>
Cc: linux-kernel@vger.kernel.org, mingo@elte.hu, paulus@samba.org,
	perfmon2-devel@lists.sourceforge.net, eranian@gmail.com
Subject: Re: [PATCH] perf_events: fix read() bogus counts when in error state
Date: Thu, 26 Nov 2009 18:36:56 +0100	[thread overview]
Message-ID: <1259257016.31676.308.camel@laptop> (raw)
In-Reply-To: <4b0eb9ce.0508d00a.573b.ffffeab6@mx.google.com>

On Thu, 2009-11-26 at 09:24 -0800, Stephane Eranian wrote:
> 	When a pinned group cannot be scheduled it goes into error state.
> 	Normally a group cannot go out of error state without being explicitly
> 	re-enabled or disabled. There was a bug in per-thread mode, whereby
> 	upon termination of the thread, the group would transition from error
> 	to off leading to bogus counts and timing information returned by
> 	read().

> 	Signed-off-by: Stephane Eranian <eranian@google.com>

Right, good catch, totally forgot about error state :/

Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
	
> ---
>  perf_event.c |   11 ++++++++++-
>  1 file changed, 10 insertions(+), 1 deletion(-)
> 
> diff --git a/kernel/perf_event.c b/kernel/perf_event.c
> index 0b0d5f7..7a8bb5b 100644
> --- a/kernel/perf_event.c
> +++ b/kernel/perf_event.c
> @@ -333,7 +333,16 @@ list_del_event(struct perf_event *event, struct perf_event_context *ctx)
>  		event->group_leader->nr_siblings--;
>  
>  	update_event_times(event);
> -	event->state = PERF_EVENT_STATE_OFF;
> +
> +	/*
> +	 * If event was in error state, then keep it
> +	 * that way, otherwise bogus counts will be
> +	 * returned on read(). The only way to get out
> +	 * of error state is by explicit re-enabling
> +	 * of the event
> +	 */
> +	if (event->state > PERF_EVENT_STATE_OFF)
> +		event->state = PERF_EVENT_STATE_OFF;
>  
>  	/*
>  	 * If this was a group event with sibling events then



  reply	other threads:[~2009-11-26 17:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-26 17:24 [PATCH] perf_events: fix read() bogus counts when in error state Stephane Eranian
2009-11-26 17:36 ` Peter Zijlstra [this message]
2009-11-26 17:48   ` Stephane Eranian
2009-11-26 17:51 ` [tip:perf/core] perf_events: Fix " tip-bot for Stephane Eranian

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=1259257016.31676.308.camel@laptop \
    --to=peterz@infradead.org \
    --cc=eranian@gmail.com \
    --cc=eranian@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=paulus@samba.org \
    --cc=perfmon2-devel@lists.sourceforge.net \
    /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