aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/perf_counter.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/perf_counter.c')
-rw-r--r--kernel/perf_counter.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c
index 995063df910f..9bcab10e735d 100644
--- a/kernel/perf_counter.c
+++ b/kernel/perf_counter.c
@@ -1760,7 +1760,15 @@ static void perf_output_copy(struct perf_output_handle *handle,
1760 1760
1761static void perf_output_end(struct perf_output_handle *handle) 1761static void perf_output_end(struct perf_output_handle *handle)
1762{ 1762{
1763 if (handle->wakeup) 1763 int wakeup_events = handle->counter->hw_event.wakeup_events;
1764
1765 if (wakeup_events) {
1766 int events = atomic_inc_return(&handle->data->events);
1767 if (events >= wakeup_events) {
1768 atomic_sub(wakeup_events, &handle->data->events);
1769 __perf_output_wakeup(handle);
1770 }
1771 } else if (handle->wakeup)
1764 __perf_output_wakeup(handle); 1772 __perf_output_wakeup(handle);
1765 rcu_read_unlock(); 1773 rcu_read_unlock();
1766} 1774}