summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-07-01 11:17:20 +0200
committerIngo Molnar <mingo@elte.hu>2009-07-01 11:17:40 +0200
commit88a69dfbc6ab1e3b51bba8c9103055e21089ebb9 (patch)
treede22b09f587fa1a1fa82e87127501add953b621d /tools
parent61c45981ddbd718136d49464f00d2f11938aaa6e (diff)
downloadlinux-3.10-88a69dfbc6ab1e3b51bba8c9103055e21089ebb9.tar.gz
linux-3.10-88a69dfbc6ab1e3b51bba8c9103055e21089ebb9.tar.bz2
linux-3.10-88a69dfbc6ab1e3b51bba8c9103055e21089ebb9.zip
perf report: Fix HV bit mismerge
Fix: builtin-report.c: In function ‘hist_entry__add’: builtin-report.c:1015: error: case label not within a switch statement builtin-report.c:1017: error: break statement not within loop or switch Cc: 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> Cc: Frederic Weisbecker <fweisbec@gmail.com> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/builtin-report.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 197793051fa..7d2b49adcdc 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -964,6 +964,9 @@ resolve_callchain(struct thread *thread, struct map *map,
}
switch (context) {
+ case PERF_CONTEXT_HV:
+ dso = hypervisor_dso;
+ break;
case PERF_CONTEXT_KERNEL:
dso = kernel_dso;
break;
@@ -1012,9 +1015,6 @@ hist_entry__add(struct thread *thread, struct map *map, struct dso *dso,
};
int cmp;
- case PERF_CONTEXT_HV:
- dso = hypervisor_dso;
- break;
if ((sort__has_parent || callchain) && chain)
syms = resolve_callchain(thread, map, chain, &entry);