The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Eric B Munson <emunson@mgebm.net>
To: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: mingo@elte.hu, borislav.petkov@amd.com, bblum@andrew.cmu.edu,
	linux-kernel@vger.kernel.org, mhack@us.ibm.com
Subject: Re: [PATCH] events: Ensure that timers are updated without requiring read() call
Date: Thu, 23 Jun 2011 10:38:54 -0400	[thread overview]
Message-ID: <20110623143853.GA5033@mgebm.net> (raw)
In-Reply-To: <1308839150.1022.130.camel@twins>

[-- Attachment #1: Type: text/plain, Size: 1430 bytes --]

On Thu, 23 Jun 2011, Peter Zijlstra wrote:

> On Thu, 2011-06-23 at 10:15 -0400, Eric B Munson wrote:
> > The event tracing infrastructure exposes two timers which should be updated
> > each time the value of the counter is updated.  Currently, these counters are
> > only updated when userspace calls read() on the fd associated with an event.
> > This means that counters which are read via the mmap'd page exclusively never
> > have their timers updated.  This patch adds ensures that the timers are updated
> > each time the values in the mmap'd page are updated.
> > 
> > Signed-off-by: Eric B Munson <emunson@mgebm.net>
> > ---
> >  kernel/events/core.c |    1 +
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> > 
> > diff --git a/kernel/events/core.c b/kernel/events/core.c
> > index 9efe710..3dd4ebe 100644
> > --- a/kernel/events/core.c
> > +++ b/kernel/events/core.c
> > @@ -3369,6 +3369,7 @@ void perf_event_update_userpage(struct perf_event *event)
> >  	struct perf_buffer *buffer;
> >  
> >  	rcu_read_lock();
> > +	update_event_times(event);
> >  	buffer = rcu_dereference(event->buffer);
> >  	if (!buffer)
> >  		goto unlock;
> 
> Not that easy, perf_event_update_userpage() can happen from NMI context,
> and update_event_times() needs to be done under ctx->lock.
> 

I was afraid that might be the case, is there an easy-ish way to accomplish
the timer update?

Eric

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

  reply	other threads:[~2011-06-23 14:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-23 14:15 [PATCH] events: Ensure that timers are updated without requiring read() call Eric B Munson
2011-06-23 14:25 ` Peter Zijlstra
2011-06-23 14:38   ` Eric B Munson [this message]
2011-06-23 14:45     ` Peter Zijlstra

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=20110623143853.GA5033@mgebm.net \
    --to=emunson@mgebm.net \
    --cc=a.p.zijlstra@chello.nl \
    --cc=bblum@andrew.cmu.edu \
    --cc=borislav.petkov@amd.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mhack@us.ibm.com \
    --cc=mingo@elte.hu \
    /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