diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2010-05-18 11:12:48 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-05-18 18:35:49 +0200 |
commit | 6d1acfd5c6bfd5231c13a8f2858d7f2afbaa1b62 (patch) | |
tree | abcfa95947cafc94c978a255b814472fe67cad22 /include/linux/perf_event.h | |
parent | fa5881514ef9c9bcb29319aad85cf2d8889d91f1 (diff) |
perf: Optimize perf_output_*() by avoiding local_xchg()
Since the x86 XCHG ins implies LOCK, avoid the use by
using a sequence count instead.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/perf_event.h')
-rw-r--r-- | include/linux/perf_event.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index ce7667616fc..fe50347dc64 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h @@ -804,6 +804,7 @@ struct perf_output_handle { struct perf_mmap_data *data; unsigned long head; unsigned long offset; + unsigned long wakeup; int nmi; int sample; }; |