summaryrefslogtreecommitdiff
path: root/tools/perf/builtin-stat.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2015-04-07 21:25:18 (GMT)
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-04-29 13:38:05 (GMT)
commita2270d38a53aa88c67a72978fc8717e26c7f27d9 (patch)
tree3015b68a187177cde2f589711392053fccd8a245 /tools/perf/builtin-stat.c
parentafef2fbd1435050377f6487c43f2aa6edc37b30f (diff)
downloadlinux-a2270d38a53aa88c67a72978fc8717e26c7f27d9.tar.xz
perf stat: Add metrics support for exclude_(host|guest)
Separating metrics values for guest and host, so we get proper values. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Andi Kleen <andi@firstfloor.org> Cc: David Ahern <dsahern@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: William Cohen <wcohen@redhat.com> Link: http://lkml.kernel.org/r/1428441919-23099-6-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-stat.c')
-rw-r--r--tools/perf/builtin-stat.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index 5a88a14..ea52508 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -251,7 +251,8 @@ enum {
CTX_BIT_USER = 1 << 0,
CTX_BIT_KERNEL = 1 << 1,
CTX_BIT_HV = 1 << 2,
- CTX_BIT_MAX = 1 << 3,
+ CTX_BIT_HOST = 1 << 3,
+ CTX_BIT_MAX = 1 << 4,
};
#define NUM_CTX CTX_BIT_MAX
@@ -282,6 +283,9 @@ static int evsel_context(struct perf_evsel *evsel)
ctx |= CTX_BIT_USER;
if (evsel->attr.exclude_hv)
ctx |= CTX_BIT_HV;
+ if (evsel->attr.exclude_host)
+ ctx |= CTX_BIT_HOST;
+
return ctx;
}