Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147432
b: refs/heads/master
c: 22c1558
h: refs/heads/master
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed May 5, 2009
1 parent 1af177e commit 83f3794
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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: c5078f78b455fbf67ea71442c7e7ca8acf9ff095
refs/heads/master: 22c1558e51c210787c6cf75d8905246fc91ec030
7 changes: 4 additions & 3 deletions trunk/kernel/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -1409,6 +1409,7 @@ static int perf_mmap_data_alloc(struct perf_counter *counter, int nr_pages)
}

data->nr_pages = nr_pages;
atomic_set(&data->lock, -1);

rcu_assign_pointer(counter->data, data);

Expand Down Expand Up @@ -1755,7 +1756,7 @@ static void perf_output_lock(struct perf_output_handle *handle)
if (in_nmi() && atomic_read(&data->lock) == cpu)
return;

while (atomic_cmpxchg(&data->lock, 0, cpu) != 0)
while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
cpu_relax();

handle->locked = 1;
Expand Down Expand Up @@ -1784,7 +1785,7 @@ static void perf_output_unlock(struct perf_output_handle *handle)
* NMI can happen here, which means we can miss a done_head update.
*/

cpu = atomic_xchg(&data->lock, 0);
cpu = atomic_xchg(&data->lock, -1);
WARN_ON_ONCE(cpu != smp_processor_id());

/*
Expand All @@ -1794,7 +1795,7 @@ static void perf_output_unlock(struct perf_output_handle *handle)
/*
* Since we had it locked, we can lock it again.
*/
while (atomic_cmpxchg(&data->lock, 0, cpu) != 0)
while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
cpu_relax();

goto again;
Expand Down

0 comments on commit 83f3794

Please sign in to comment.