mirror of
https://github.com/torvalds/linux.git
synced 2024-12-15 15:41:58 +00:00
perf_counter: add comment to barrier
We need to ensure the enabled=0 write happens before we start disabling the actual counters, so that a pcm_amd_enable() will not enable one underneath us. I think the race is impossible anyway, we always balance the ops within any one context and perform enable() with IRQs disabled. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
755642322a
commit
60b3df9c1e
@ -247,6 +247,10 @@ static u64 pmc_amd_save_disable_all(void)
|
||||
|
||||
enabled = cpuc->enabled;
|
||||
cpuc->enabled = 0;
|
||||
/*
|
||||
* ensure we write the disable before we start disabling the
|
||||
* counters proper, so that pcm_amd_enable() does the right thing.
|
||||
*/
|
||||
barrier();
|
||||
|
||||
for (idx = 0; idx < nr_counters_generic; idx++) {
|
||||
|
Loading…
Reference in New Issue
Block a user