summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJiri Olsa2015-04-07 23:25:19 +0200
committerArnaldo Carvalho de Melo2015-04-29 15:38:06 +0200
commitc4fa0d9c1e6aa360cfa2c36f7836a89da24a1b7a (patch)
tree6dcc97191b1015dd86408c546f69c339505674b9 /tools
parentperf stat: Add metrics support for exclude_(host|guest) (diff)
downloadkernel-qcow2-linux-c4fa0d9c1e6aa360cfa2c36f7836a89da24a1b7a.tar.gz
kernel-qcow2-linux-c4fa0d9c1e6aa360cfa2c36f7836a89da24a1b7a.tar.xz
kernel-qcow2-linux-c4fa0d9c1e6aa360cfa2c36f7836a89da24a1b7a.zip
perf stat: Add metrics support for exclude_idle
Separating metrics values for exclude_idle bit. 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-7-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/builtin-stat.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index ea5250890bd5..fd577f725d23 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -252,7 +252,8 @@ enum {
CTX_BIT_KERNEL = 1 << 1,
CTX_BIT_HV = 1 << 2,
CTX_BIT_HOST = 1 << 3,
- CTX_BIT_MAX = 1 << 4,
+ CTX_BIT_IDLE = 1 << 4,
+ CTX_BIT_MAX = 1 << 5,
};
#define NUM_CTX CTX_BIT_MAX
@@ -285,6 +286,8 @@ static int evsel_context(struct perf_evsel *evsel)
ctx |= CTX_BIT_HV;
if (evsel->attr.exclude_host)
ctx |= CTX_BIT_HOST;
+ if (evsel->attr.exclude_idle)
+ ctx |= CTX_BIT_IDLE;
return ctx;
}