Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257062
b: refs/heads/master
c: 0d64120
h: refs/heads/master
v: v3
  • Loading branch information
Eric B Munson authored and Ingo Molnar committed Jul 1, 2011
1 parent c8f78f2 commit a259de0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c4794295917ebeda8013b6cb9c8d71ab4f74a1fa
refs/heads/master: 0d6412085b7ff58612af52e51ffa864f0df4b8fd
15 changes: 13 additions & 2 deletions trunk/kernel/events/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -3372,8 +3372,19 @@ void perf_event_update_userpage(struct perf_event *event)
{
struct perf_event_mmap_page *userpg;
struct ring_buffer *rb;
u64 enabled, running;

rcu_read_lock();
/*
* compute total_time_enabled, total_time_running
* based on snapshot values taken when the event
* was last scheduled in.
*
* we cannot simply called update_context_time()
* because of locking issue as we can be called in
* NMI context
*/
calc_timer_values(event, &enabled, &running);
rb = rcu_dereference(event->rb);
if (!rb)
goto unlock;
Expand All @@ -3392,10 +3403,10 @@ void perf_event_update_userpage(struct perf_event *event)
if (event->state == PERF_EVENT_STATE_ACTIVE)
userpg->offset -= local64_read(&event->hw.prev_count);

userpg->time_enabled = event->total_time_enabled +
userpg->time_enabled = enabled +
atomic64_read(&event->child_total_time_enabled);

userpg->time_running = event->total_time_running +
userpg->time_running = running +
atomic64_read(&event->child_total_time_running);

barrier();
Expand Down

0 comments on commit a259de0

Please sign in to comment.