aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-11-23 05:37:25 -0500
committerIngo Molnar <mingo@elte.hu>2009-11-23 05:49:56 -0500
commit2e2af50b1fab3c40636839a7f439c167ae559533 (patch)
tree227e0bfd12757fb90d403440f318e7337144c468
parent6c2bfcbe58e0dd39554be88940149f5aa11e17d1 (diff)
perf_events: Disable events when we detach them
If we leave the event in STATE_INACTIVE, any read of the event after the detach will increase the running count but not the enabled count and cause funny scaling artefacts. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> LKML-Reference: <20091123103819.689055515@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--kernel/perf_event.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/perf_event.c b/kernel/perf_event.c
index 1f14481c2337..fb851ec34461 100644
--- a/kernel/perf_event.c
+++ b/kernel/perf_event.c
@@ -294,6 +294,8 @@ list_del_event(struct perf_event *event, struct perf_event_context *ctx)
294 if (event->group_leader != event) 294 if (event->group_leader != event)
295 event->group_leader->nr_siblings--; 295 event->group_leader->nr_siblings--;
296 296
297 event->state = PERF_EVENT_STATE_OFF;
298
297 /* 299 /*
298 * If this was a group event with sibling events then 300 * If this was a group event with sibling events then
299 * upgrade the siblings to singleton events by adding them 301 * upgrade the siblings to singleton events by adding them