mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

perf kvm tool defines its own cached list which is managed with RB tree, histograms also provide RB tree to manage data entries. Since now we have introduced histograms in the tool, it's not necessary to use the self defined list and we can directly use histograms list to manage KVM events. This patch changes to use histograms list to track KVM events, and it invokes the common function hists__output_resort_cb() to sort result, this also give us flexibility to extend more sorting key words easily. After histograms list supported, the cached list is redundant so remove the relevant code for it. Committer notes: kvm_hists__reinit() is only used by functions enclosed in: #if defined(HAVE_KVM_STAT_SUPPORT) && defined(HAVE_LIBTRACEEVENT) So do it with this new function as well. Signed-off-by: Leo Yan <leo.yan@linaro.org> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Ian Rogers <irogers@google.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: James Clark <james.clark@arm.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: John Garry <john.g.garry@oracle.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: linux-arm-kernel@lists.infradead.org Link: https://lore.kernel.org/r/20230315145112.186603-2-leo.yan@linaro.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
158 lines
3.4 KiB
C
158 lines
3.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __PERF_KVM_STAT_H
|
|
#define __PERF_KVM_STAT_H
|
|
|
|
#ifdef HAVE_KVM_STAT_SUPPORT
|
|
|
|
#include "tool.h"
|
|
#include "sort.h"
|
|
#include "stat.h"
|
|
#include "symbol.h"
|
|
#include "record.h"
|
|
|
|
#define KVM_EVENT_NAME_LEN 40
|
|
|
|
struct evsel;
|
|
struct evlist;
|
|
struct perf_session;
|
|
|
|
struct event_key {
|
|
#define INVALID_KEY (~0ULL)
|
|
u64 key;
|
|
int info;
|
|
struct exit_reasons_table *exit_reasons;
|
|
};
|
|
|
|
struct kvm_info {
|
|
char name[KVM_EVENT_NAME_LEN];
|
|
};
|
|
|
|
struct kvm_event_stats {
|
|
u64 time;
|
|
struct stats stats;
|
|
};
|
|
|
|
struct perf_kvm_stat;
|
|
|
|
struct kvm_event {
|
|
struct list_head hash_entry;
|
|
|
|
struct perf_kvm_stat *perf_kvm;
|
|
struct event_key key;
|
|
|
|
struct kvm_event_stats total;
|
|
|
|
#define DEFAULT_VCPU_NUM 8
|
|
int max_vcpu;
|
|
struct kvm_event_stats *vcpu;
|
|
|
|
struct hist_entry he;
|
|
};
|
|
|
|
typedef int64_t (*key_cmp_fun)(struct kvm_event*, struct kvm_event*, int);
|
|
|
|
struct kvm_event_key {
|
|
const char *name;
|
|
key_cmp_fun key;
|
|
};
|
|
|
|
struct child_event_ops {
|
|
void (*get_key)(struct evsel *evsel,
|
|
struct perf_sample *sample,
|
|
struct event_key *key);
|
|
const char *name;
|
|
};
|
|
|
|
struct kvm_events_ops {
|
|
bool (*is_begin_event)(struct evsel *evsel,
|
|
struct perf_sample *sample,
|
|
struct event_key *key);
|
|
bool (*is_end_event)(struct evsel *evsel,
|
|
struct perf_sample *sample, struct event_key *key);
|
|
struct child_event_ops *child_ops;
|
|
void (*decode_key)(struct perf_kvm_stat *kvm, struct event_key *key,
|
|
char *decode);
|
|
const char *name;
|
|
};
|
|
|
|
struct exit_reasons_table {
|
|
unsigned long exit_code;
|
|
const char *reason;
|
|
};
|
|
|
|
struct perf_kvm_stat {
|
|
struct perf_tool tool;
|
|
struct record_opts opts;
|
|
struct evlist *evlist;
|
|
struct perf_session *session;
|
|
|
|
const char *file_name;
|
|
const char *report_event;
|
|
const char *sort_key;
|
|
int trace_vcpu;
|
|
|
|
/* Used when process events */
|
|
struct addr_location al;
|
|
|
|
struct exit_reasons_table *exit_reasons;
|
|
const char *exit_reasons_isa;
|
|
|
|
struct kvm_events_ops *events_ops;
|
|
key_cmp_fun compare;
|
|
|
|
u64 total_time;
|
|
u64 total_count;
|
|
u64 lost_events;
|
|
u64 duration;
|
|
|
|
struct intlist *pid_list;
|
|
|
|
int timerfd;
|
|
unsigned int display_time;
|
|
bool live;
|
|
bool force;
|
|
};
|
|
|
|
struct kvm_reg_events_ops {
|
|
const char *name;
|
|
struct kvm_events_ops *ops;
|
|
};
|
|
|
|
void exit_event_get_key(struct evsel *evsel,
|
|
struct perf_sample *sample,
|
|
struct event_key *key);
|
|
bool exit_event_begin(struct evsel *evsel,
|
|
struct perf_sample *sample,
|
|
struct event_key *key);
|
|
bool exit_event_end(struct evsel *evsel,
|
|
struct perf_sample *sample,
|
|
struct event_key *key);
|
|
void exit_event_decode_key(struct perf_kvm_stat *kvm,
|
|
struct event_key *key,
|
|
char *decode);
|
|
|
|
bool kvm_exit_event(struct evsel *evsel);
|
|
bool kvm_entry_event(struct evsel *evsel);
|
|
int setup_kvm_events_tp(struct perf_kvm_stat *kvm);
|
|
|
|
#define define_exit_reasons_table(name, symbols) \
|
|
static struct exit_reasons_table name[] = { \
|
|
symbols, { -1, NULL } \
|
|
}
|
|
|
|
/*
|
|
* arch specific callbacks and data structures
|
|
*/
|
|
int cpu_isa_init(struct perf_kvm_stat *kvm, const char *cpuid);
|
|
|
|
extern const char *kvm_events_tp[];
|
|
extern struct kvm_reg_events_ops kvm_reg_events_ops[];
|
|
extern const char * const kvm_skip_events[];
|
|
extern const char *vcpu_id_str;
|
|
extern const char *kvm_exit_reason;
|
|
extern const char *kvm_entry_trace;
|
|
extern const char *kvm_exit_trace;
|
|
#endif /* HAVE_KVM_STAT_SUPPORT */
|
|
|
|
extern int kvm_add_default_arch_event(int *argc, const char **argv);
|
|
#endif /* __PERF_KVM_STAT_H */
|