diff options
author | Anton Blanchard <anton@samba.org> | 2009-07-01 09:00:48 +1000 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-07-01 01:25:20 +0200 |
commit | d8db1b57d31a6b30ea2f0df318eab50fc92b38d6 (patch) | |
tree | b45eda25f3f6119c9a306a00da37fa51b01c9f0d /tools/perf | |
parent | 3a3393ef75a14ae259a82f3f38624efa17884168 (diff) | |
download | linux-3.10-d8db1b57d31a6b30ea2f0df318eab50fc92b38d6.tar.gz linux-3.10-d8db1b57d31a6b30ea2f0df318eab50fc92b38d6.tar.bz2 linux-3.10-d8db1b57d31a6b30ea2f0df318eab50fc92b38d6.zip |
perf report: Fix reporting of hypervisor
PERF_EVENT_MISC_* is not a bitmask, so we have to mask and compare.
Signed-off-by: Anton Blanchard <anton@samba.org>
Cc: a.p.zijlstra@chello.nl
Cc: paulus@samba.org
LKML-Reference: <20090630230141.088394681@samba.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-report.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 135b7837e6b..88e88c510ae 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c @@ -1213,6 +1213,7 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head) struct map *map = NULL; void *more_data = event->ip.__more_data; struct ip_callchain *chain = NULL; + int cpumode; if (sample_type & PERF_SAMPLE_PERIOD) { period = *(u64 *)more_data; @@ -1256,7 +1257,9 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head) if (comm_list && !strlist__has_entry(comm_list, thread->comm)) return 0; - if (event->header.misc & PERF_EVENT_MISC_KERNEL) { + cpumode = event->header.misc & PERF_EVENT_MISC_CPUMODE_MASK; + + if (cpumode == PERF_EVENT_MISC_KERNEL) { show = SHOW_KERNEL; level = 'k'; @@ -1264,7 +1267,7 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head) dprintf(" ...... dso: %s\n", dso->name); - } else if (event->header.misc & PERF_EVENT_MISC_USER) { + } else if (cpumode == PERF_EVENT_MISC_USER) { show = SHOW_USER; level = '.'; |