diff options
author | Alexander Yarygin <yarygin@linux.vnet.ibm.com> | 2014-07-03 10:29:06 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-07-16 16:57:32 -0400 |
commit | 54c801ff71ba9c9ae41871e226b9d846ff9c6bab (patch) | |
tree | f76af7d6d25bbf56be31d9c3bddaaae77205aa76 /tools/perf/arch | |
parent | 9daa81239e60c162153fb2a365b8492c9a9bf632 (diff) |
perf kvm: Add skip_event() for --duration option
Current code skips output of the x86 specific HLT event in order to
avoid flooding the output with enabled --duration option. The events to
be skipped should be architecture dependent, though.
Let's add an architecture specific array of events to be skipped and
introduce a skip_event() function checking against that array.
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Reviewed-by: David Ahern <dsahern@gmail.com>
Signed-off-by: Alexander Yarygin <yarygin@linux.vnet.ibm.com>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1404397747-20939-4-git-send-email-yarygin@linux.vnet.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/arch')
-rw-r--r-- | tools/perf/arch/x86/util/kvm-stat.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/arch/x86/util/kvm-stat.c b/tools/perf/arch/x86/util/kvm-stat.c index 2f8d2c1af5ca..14e4e668fad7 100644 --- a/tools/perf/arch/x86/util/kvm-stat.c +++ b/tools/perf/arch/x86/util/kvm-stat.c | |||
@@ -136,6 +136,11 @@ struct kvm_reg_events_ops kvm_reg_events_ops[] = { | |||
136 | { NULL, NULL }, | 136 | { NULL, NULL }, |
137 | }; | 137 | }; |
138 | 138 | ||
139 | const char * const kvm_skip_events[] = { | ||
140 | "HLT", | ||
141 | NULL, | ||
142 | }; | ||
143 | |||
139 | int cpu_isa_init(struct perf_kvm_stat *kvm, const char *cpuid) | 144 | int cpu_isa_init(struct perf_kvm_stat *kvm, const char *cpuid) |
140 | { | 145 | { |
141 | if (strstr(cpuid, "Intel")) { | 146 | if (strstr(cpuid, "Intel")) { |