x86, bts: wait until traced task has been scheduled out

In order to stop branch tracing for a running task, we need to first
clear the branch tracing control bits before we may free the tracing
buffer.

If the traced task is running, the cpu might still trace that task
after the branch trace control bits have cleared.

Wait until the traced task has been scheduled out before proceeding.

A similar problem affects the task debug store context. We first remove
the context, then we need to wait until the task has been scheduled
out before we can free the context memory.

Reviewed-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
Cc: roland@redhat.com
Cc: eranian@googlemail.com
Cc: juan.villacis@intel.com
Cc: ak@linux.jf.intel.com
LKML-Reference: <20090403144551.919636000@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Markus Metzger 2009-04-03 16:43:36 +02:00 committed by Ingo Molnar
parent e2b371f00a
commit 8d99b3ac27
1 changed files with 19 additions and 4 deletions

View File

@ -299,6 +299,7 @@ static inline struct ds_context *ds_get_context(struct task_struct *task)
static inline void ds_put_context(struct ds_context *context) static inline void ds_put_context(struct ds_context *context)
{ {
struct task_struct *task;
unsigned long irq; unsigned long irq;
if (!context) if (!context)
@ -313,14 +314,20 @@ static inline void ds_put_context(struct ds_context *context)
*(context->this) = NULL; *(context->this) = NULL;
if (context->task) task = context->task;
clear_tsk_thread_flag(context->task, TIF_DS_AREA_MSR);
if (!context->task || (context->task == current)) if (task)
clear_tsk_thread_flag(task, TIF_DS_AREA_MSR);
if (!task || (task == current))
wrmsrl(MSR_IA32_DS_AREA, 0); wrmsrl(MSR_IA32_DS_AREA, 0);
spin_unlock_irqrestore(&ds_lock, irq); spin_unlock_irqrestore(&ds_lock, irq);
/* The context might still be in use for context switching. */
if (task && (task != current))
wait_task_context_switch(task);
kfree(context); kfree(context);
} }
@ -781,15 +788,23 @@ struct pebs_tracer *ds_request_pebs(struct task_struct *task,
void ds_release_bts(struct bts_tracer *tracer) void ds_release_bts(struct bts_tracer *tracer)
{ {
struct task_struct *task;
if (!tracer) if (!tracer)
return; return;
task = tracer->ds.context->task;
ds_suspend_bts(tracer); ds_suspend_bts(tracer);
WARN_ON_ONCE(tracer->ds.context->bts_master != tracer); WARN_ON_ONCE(tracer->ds.context->bts_master != tracer);
tracer->ds.context->bts_master = NULL; tracer->ds.context->bts_master = NULL;
put_tracer(tracer->ds.context->task); /* Make sure tracing stopped and the tracer is not in use. */
if (task && (task != current))
wait_task_context_switch(task);
put_tracer(task);
ds_put_context(tracer->ds.context); ds_put_context(tracer->ds.context);
kfree(tracer); kfree(tracer);