diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-05-15 14:45:59 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-17 01:52:24 -0400 |
commit | 856d56b9e5de650a64a6c41c17aaed702b55d578 (patch) | |
tree | af2fcfe19f0ab27fa220216285e4703ecc7887e1 /kernel/exit.c | |
parent | 8bc2095951517e2c74b8aeeca4685ddd6b16ed4b (diff) |
perf_counter: Fix counter inheritance
Srivatsa Vaddagiri reported that a Java workload triggers this
warning in kernel/exit.c:
WARN_ON_ONCE(!list_empty(&tsk->perf_counter_ctx.counter_list));
Add the inherited counter propagation on self-detach, this could
cause counter leaks and incomplete stats in threaded code like
the below:
#include <pthread.h>
#include <unistd.h>
void *thread(void *arg)
{
sleep(5);
return NULL;
}
void main(void)
{
pthread_t thr;
pthread_create(&thr, NULL, thread, NULL);
}
Reported-by: Srivatsa Vaddagiri <vatsa@in.ibm.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/exit.c')
-rw-r--r-- | kernel/exit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 4741376c8dec..16d74f13a3e7 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -128,6 +128,12 @@ static void __exit_signal(struct task_struct *tsk) | |||
128 | sig = NULL; /* Marker for below. */ | 128 | sig = NULL; /* Marker for below. */ |
129 | } | 129 | } |
130 | 130 | ||
131 | /* | ||
132 | * Flush inherited counters to the parent - before the parent | ||
133 | * gets woken up by child-exit notifications. | ||
134 | */ | ||
135 | perf_counter_exit_task(tsk); | ||
136 | |||
131 | __unhash_process(tsk); | 137 | __unhash_process(tsk); |
132 | 138 | ||
133 | /* | 139 | /* |