diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-06-05 08:44:52 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-05 12:07:47 -0400 |
commit | ac4bcf889469ffbca88f234d3184452886a47905 (patch) | |
tree | 7a183aaa0524d2e1ad192f01ac9a48ba2e9b51d6 /include | |
parent | 136107a76fe5f62906162f730834477b71cf131e (diff) |
perf_counter: Change PERF_SAMPLE_CONFIG into PERF_SAMPLE_ID
The purpose of PERF_SAMPLE_CONFIG was to identify the counters,
since then we've added counter ids, use those instead.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/perf_counter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h index 40dc0e273d9c..9cea32a0655d 100644 --- a/include/linux/perf_counter.h +++ b/include/linux/perf_counter.h | |||
@@ -104,7 +104,7 @@ enum perf_counter_sample_format { | |||
104 | PERF_SAMPLE_ADDR = 1U << 3, | 104 | PERF_SAMPLE_ADDR = 1U << 3, |
105 | PERF_SAMPLE_GROUP = 1U << 4, | 105 | PERF_SAMPLE_GROUP = 1U << 4, |
106 | PERF_SAMPLE_CALLCHAIN = 1U << 5, | 106 | PERF_SAMPLE_CALLCHAIN = 1U << 5, |
107 | PERF_SAMPLE_CONFIG = 1U << 6, | 107 | PERF_SAMPLE_ID = 1U << 6, |
108 | PERF_SAMPLE_CPU = 1U << 7, | 108 | PERF_SAMPLE_CPU = 1U << 7, |
109 | }; | 109 | }; |
110 | 110 | ||