aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Yarygin <yarygin@linux.vnet.ibm.com>2014-07-03 09:59:50 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-07-07 15:55:24 -0400
commitdf74c13b6c53c97576652f7b2840764ad7d5f949 (patch)
tree8ba8040c4edfbe43049c2d2bb0b81e5f5deb83ce
parentda50ad69723111e0292f1943dad77b41bb9a25b0 (diff)
perf kvm: Simplify exit reasons tables definitions
The perf_kvm_stat struct keeps the size of a table of exit reasons in the field 'exit_reasons_size'. The field is initialized and then used by get_exit_reason() for serial access to the table, so that the calling function does not actually need to know table size. Usage of tables with 'end of sequence' marker simplifies the get_exit_reason() function. Also the patch introduces a define_exit_reasons_table, which makes it easier to define new tables. 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> Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Cc: Christian Borntraeger <borntraeger@de.ibm.com> Cc: Cornelia Huck <cornelia.huck@de.ibm.com> Cc: David Ahern <dsahern@gmail.com> 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/1404395992-17095-3-git-send-email-yarygin@linux.vnet.ibm.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/builtin-kvm.c27
1 files changed, 12 insertions, 15 deletions
diff --git a/tools/perf/builtin-kvm.c b/tools/perf/builtin-kvm.c
index 214ec0e7492b..75f354459005 100644
--- a/tools/perf/builtin-kvm.c
+++ b/tools/perf/builtin-kvm.c
@@ -99,7 +99,6 @@ struct perf_kvm_stat {
99 int trace_vcpu; 99 int trace_vcpu;
100 100
101 struct exit_reasons_table *exit_reasons; 101 struct exit_reasons_table *exit_reasons;
102 int exit_reasons_size;
103 const char *exit_reasons_isa; 102 const char *exit_reasons_isa;
104 103
105 struct kvm_events_ops *events_ops; 104 struct kvm_events_ops *events_ops;
@@ -158,20 +157,19 @@ static bool exit_event_end(struct perf_evsel *evsel,
158 return kvm_entry_event(evsel); 157 return kvm_entry_event(evsel);
159} 158}
160 159
161static struct exit_reasons_table vmx_exit_reasons[] = { 160#define define_exit_reasons_table(name, symbols) \
162 VMX_EXIT_REASONS 161 static struct exit_reasons_table name[] = { \
163}; 162 symbols, { -1, NULL } \
163 }
164 164
165static struct exit_reasons_table svm_exit_reasons[] = { 165define_exit_reasons_table(vmx_exit_reasons, VMX_EXIT_REASONS);
166 SVM_EXIT_REASONS 166define_exit_reasons_table(svm_exit_reasons, SVM_EXIT_REASONS);
167};
168 167
169static const char *get_exit_reason(struct perf_kvm_stat *kvm, u64 exit_code) 168static const char *get_exit_reason(struct perf_kvm_stat *kvm,
169 struct exit_reasons_table *tbl,
170 u64 exit_code)
170{ 171{
171 int i = kvm->exit_reasons_size; 172 while (tbl->reason != NULL) {
172 struct exit_reasons_table *tbl = kvm->exit_reasons;
173
174 while (i--) {
175 if (tbl->exit_code == exit_code) 173 if (tbl->exit_code == exit_code)
176 return tbl->reason; 174 return tbl->reason;
177 tbl++; 175 tbl++;
@@ -186,7 +184,8 @@ static void exit_event_decode_key(struct perf_kvm_stat *kvm,
186 struct event_key *key, 184 struct event_key *key,
187 char decode[20]) 185 char decode[20])
188{ 186{
189 const char *exit_reason = get_exit_reason(kvm, key->key); 187 const char *exit_reason = get_exit_reason(kvm, kvm->exit_reasons,
188 key->key);
190 189
191 scnprintf(decode, 20, "%s", exit_reason); 190 scnprintf(decode, 20, "%s", exit_reason);
192} 191}
@@ -862,7 +861,6 @@ static int cpu_isa_config(struct perf_kvm_stat *kvm)
862 861
863 if (isa == 1) { 862 if (isa == 1) {
864 kvm->exit_reasons = vmx_exit_reasons; 863 kvm->exit_reasons = vmx_exit_reasons;
865 kvm->exit_reasons_size = ARRAY_SIZE(vmx_exit_reasons);
866 kvm->exit_reasons_isa = "VMX"; 864 kvm->exit_reasons_isa = "VMX";
867 } 865 }
868 866
@@ -1586,7 +1584,6 @@ static int kvm_cmd_stat(const char *file_name, int argc, const char **argv)
1586 .sort_key = "sample", 1584 .sort_key = "sample",
1587 1585
1588 .exit_reasons = svm_exit_reasons, 1586 .exit_reasons = svm_exit_reasons,
1589 .exit_reasons_size = ARRAY_SIZE(svm_exit_reasons),
1590 .exit_reasons_isa = "SVM", 1587 .exit_reasons_isa = "SVM",
1591 }; 1588 };
1592 1589