Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147429
b: refs/heads/master
c: c66de4a
h: refs/heads/master
i:
  147427: 854acab
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed May 5, 2009
1 parent b1b9ca3 commit 1cde54e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 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: 066d7dea32c9bffe6decc0abe465627656cdd84e
refs/heads/master: c66de4a5be7913247bd83d79168f8e4420c9cfbc
4 changes: 3 additions & 1 deletion trunk/include/linux/perf_counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,11 @@ struct perf_mmap_data {
atomic_t head; /* write position */
atomic_t events; /* event limit */

atomic_t wakeup_head; /* completed head */
atomic_t done_head; /* completed head */
atomic_t lock; /* concurrent writes */

atomic_t wakeup; /* needs a wakeup */

struct perf_counter_mmap_page *user_page;
void *data_pages[0];
};
Expand Down
20 changes: 9 additions & 11 deletions trunk/kernel/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,6 @@ struct perf_output_handle {
struct perf_mmap_data *data;
unsigned int offset;
unsigned int head;
int wakeup;
int nmi;
int overflow;
int locked;
Expand Down Expand Up @@ -1752,8 +1751,7 @@ static void perf_output_unlock(struct perf_output_handle *handle)
struct perf_mmap_data *data = handle->data;
int head, cpu;

if (handle->wakeup)
data->wakeup_head = data->head;
data->done_head = data->head;

if (!handle->locked)
goto out;
Expand All @@ -1764,13 +1762,11 @@ static void perf_output_unlock(struct perf_output_handle *handle)
* before we publish the new head, matched by a rmb() in userspace when
* reading this position.
*/
while ((head = atomic_xchg(&data->wakeup_head, 0))) {
while ((head = atomic_xchg(&data->done_head, 0)))
data->user_page->data_head = head;
handle->wakeup = 1;
}

/*
* NMI can happen here, which means we can miss a wakeup_head update.
* NMI can happen here, which means we can miss a done_head update.
*/

cpu = atomic_xchg(&data->lock, 0);
Expand All @@ -1779,7 +1775,7 @@ static void perf_output_unlock(struct perf_output_handle *handle)
/*
* Therefore we have to validate we did not indeed do so.
*/
if (unlikely(atomic_read(&data->wakeup_head))) {
if (unlikely(atomic_read(&data->done_head))) {
/*
* Since we had it locked, we can lock it again.
*/
Expand All @@ -1789,7 +1785,7 @@ static void perf_output_unlock(struct perf_output_handle *handle)
goto again;
}

if (handle->wakeup)
if (atomic_xchg(&data->wakeup, 0))
perf_output_wakeup(handle);
out:
local_irq_restore(handle->flags);
Expand Down Expand Up @@ -1824,7 +1820,9 @@ static int perf_output_begin(struct perf_output_handle *handle,

handle->offset = offset;
handle->head = head;
handle->wakeup = (offset >> PAGE_SHIFT) != (head >> PAGE_SHIFT);

if ((offset >> PAGE_SHIFT) != (head >> PAGE_SHIFT))
atomic_set(&data->wakeup, 1);

return 0;

Expand Down Expand Up @@ -1882,7 +1880,7 @@ static void perf_output_end(struct perf_output_handle *handle)
int events = atomic_inc_return(&data->events);
if (events >= wakeup_events) {
atomic_sub(wakeup_events, &data->events);
handle->wakeup = 1;
atomic_set(&data->wakeup, 1);
}
}

Expand Down

0 comments on commit 1cde54e

Please sign in to comment.