aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/perf_counter.h
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-04-08 09:01:32 -0400
committerIngo Molnar <mingo@elte.hu>2009-04-08 13:05:55 -0400
commit4d855457d84b819fefcd1cd1b0a2a0a0ec475c07 (patch)
tree7d0875fd698119befe218e7d6f584fe59064982f /include/linux/perf_counter.h
parentde9ac07bbf8f51e0ce40e5428c3a8f627bd237c2 (diff)
perf_counter: move PERF_RECORD_TIME
Move PERF_RECORD_TIME so that all the fixed length items come before the variable length ones. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> LKML-Reference: <20090408130409.307926436@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/perf_counter.h')
-rw-r--r--include/linux/perf_counter.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h
index a70a55f27598..8bd1be58c938 100644
--- a/include/linux/perf_counter.h
+++ b/include/linux/perf_counter.h
@@ -100,9 +100,9 @@ enum sw_event_ids {
100enum perf_counter_record_format { 100enum perf_counter_record_format {
101 PERF_RECORD_IP = 1U << 0, 101 PERF_RECORD_IP = 1U << 0,
102 PERF_RECORD_TID = 1U << 1, 102 PERF_RECORD_TID = 1U << 1,
103 PERF_RECORD_GROUP = 1U << 2, 103 PERF_RECORD_TIME = 1U << 2,
104 PERF_RECORD_CALLCHAIN = 1U << 3, 104 PERF_RECORD_GROUP = 1U << 3,
105 PERF_RECORD_TIME = 1U << 4, 105 PERF_RECORD_CALLCHAIN = 1U << 4,
106}; 106};
107 107
108/* 108/*
@@ -250,6 +250,7 @@ enum perf_event_type {
250 * 250 *
251 * { u64 ip; } && PERF_RECORD_IP 251 * { u64 ip; } && PERF_RECORD_IP
252 * { u32 pid, tid; } && PERF_RECORD_TID 252 * { u32 pid, tid; } && PERF_RECORD_TID
253 * { u64 time; } && PERF_RECORD_TIME
253 * 254 *
254 * { u64 nr; 255 * { u64 nr;
255 * { u64 event, val; } cnt[nr]; } && PERF_RECORD_GROUP 256 * { u64 event, val; } cnt[nr]; } && PERF_RECORD_GROUP
@@ -259,8 +260,6 @@ enum perf_event_type {
259 * kernel, 260 * kernel,
260 * user; 261 * user;
261 * u64 ips[nr]; } && PERF_RECORD_CALLCHAIN 262 * u64 ips[nr]; } && PERF_RECORD_CALLCHAIN
262 *
263 * { u64 time; } && PERF_RECORD_TIME
264 * }; 263 * };
265 */ 264 */
266}; 265};