2014-07-03 22:29:05 +08:00
|
|
|
#ifndef __PERF_KVM_STAT_H
|
|
|
|
#define __PERF_KVM_STAT_H
|
|
|
|
|
|
|
|
#include "../perf.h"
|
|
|
|
#include "evsel.h"
|
|
|
|
#include "evlist.h"
|
|
|
|
#include "session.h"
|
|
|
|
#include "tool.h"
|
|
|
|
#include "stat.h"
|
|
|
|
|
|
|
|
struct event_key {
|
|
|
|
#define INVALID_KEY (~0ULL)
|
|
|
|
u64 key;
|
|
|
|
int info;
|
2014-07-03 22:29:07 +08:00
|
|
|
struct exit_reasons_table *exit_reasons;
|
2014-07-03 22:29:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct kvm_event_stats {
|
|
|
|
u64 time;
|
|
|
|
struct stats stats;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct kvm_event {
|
|
|
|
struct list_head hash_entry;
|
|
|
|
struct rb_node rb;
|
|
|
|
|
|
|
|
struct event_key key;
|
|
|
|
|
|
|
|
struct kvm_event_stats total;
|
|
|
|
|
|
|
|
#define DEFAULT_VCPU_NUM 8
|
|
|
|
int max_vcpu;
|
|
|
|
struct kvm_event_stats *vcpu;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef int (*key_cmp_fun)(struct kvm_event*, struct kvm_event*, int);
|
|
|
|
|
|
|
|
struct kvm_event_key {
|
|
|
|
const char *name;
|
|
|
|
key_cmp_fun key;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct perf_kvm_stat;
|
|
|
|
|
2014-07-03 22:29:07 +08:00
|
|
|
struct child_event_ops {
|
|
|
|
void (*get_key)(struct perf_evsel *evsel,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct event_key *key);
|
|
|
|
const char *name;
|
|
|
|
};
|
|
|
|
|
2014-07-03 22:29:05 +08:00
|
|
|
struct kvm_events_ops {
|
|
|
|
bool (*is_begin_event)(struct perf_evsel *evsel,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct event_key *key);
|
|
|
|
bool (*is_end_event)(struct perf_evsel *evsel,
|
|
|
|
struct perf_sample *sample, struct event_key *key);
|
2014-07-03 22:29:07 +08:00
|
|
|
struct child_event_ops *child_ops;
|
2014-07-03 22:29:05 +08:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define EVENTS_BITS 12
|
|
|
|
#define EVENTS_CACHE_SIZE (1UL << EVENTS_BITS)
|
|
|
|
|
|
|
|
struct perf_kvm_stat {
|
|
|
|
struct perf_tool tool;
|
|
|
|
struct record_opts opts;
|
|
|
|
struct perf_evlist *evlist;
|
|
|
|
struct perf_session *session;
|
|
|
|
|
|
|
|
const char *file_name;
|
|
|
|
const char *report_event;
|
|
|
|
const char *sort_key;
|
|
|
|
int trace_vcpu;
|
|
|
|
|
|
|
|
struct exit_reasons_table *exit_reasons;
|
|
|
|
const char *exit_reasons_isa;
|
|
|
|
|
|
|
|
struct kvm_events_ops *events_ops;
|
|
|
|
key_cmp_fun compare;
|
|
|
|
struct list_head kvm_events_cache[EVENTS_CACHE_SIZE];
|
|
|
|
|
|
|
|
u64 total_time;
|
|
|
|
u64 total_count;
|
|
|
|
u64 lost_events;
|
|
|
|
u64 duration;
|
|
|
|
|
|
|
|
struct intlist *pid_list;
|
|
|
|
|
|
|
|
struct rb_root result;
|
|
|
|
|
|
|
|
int timerfd;
|
|
|
|
unsigned int display_time;
|
|
|
|
bool live;
|
perf kvm: Support using -f to override perf.data.guest file ownership
Enable perf kvm to use perf.data.guest when it is not owned by current
user or root.
Example:
# perf kvm stat record ls
# chown Yunlong.Song:Yunlong.Song perf.data.guest
# ls -al perf.data.guest
-rw------- 1 Yunlong.Song Yunlong.Song 4128937 Apr 2 11:05 perf.data.guest
# id
uid=0(root) gid=0(root) groups=0(root),64(pkcs11)
Before this patch:
# perf kvm stat report
File perf.data.guest not owned by current user or root (use -f to override)
Initializing perf session failed
# perf kvm stat report -f
Error: unknown switch `f'
usage: perf kvm stat report [<options>]
--event <report event>
event for reporting: vmexit, mmio (x86 only),
ioport (x86 only)
--vcpu <n> vcpu id to report
-k, --key <sort-key> key for sorting: sample(sort by samples
number) time (sort by avg time)
-p, --pid <pid> analyze events only for given process id(s)
As shown above, the -f option does not work at all.
After this patch:
# perf kvm stat report
File perf.data.guest not owned by current user or root (use -f to override)
Initializing perf session failed
# perf kvm stat report -f
Analyze events for all VMs, all VCPUs:
VM-EXIT Samples Samples% Time% Min Time Max Time Avg time
Total Samples:0, Total events handled time:0.00us.
As shown above, the -f option really works now. Since we have not
launched any KVM related process, the result shows 0 sample here.
Signed-off-by: Yunlong Song <yunlong.song@huawei.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1427982439-27388-5-git-send-email-yunlong.song@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-04-02 21:47:13 +08:00
|
|
|
bool force;
|
2014-07-03 22:29:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct kvm_reg_events_ops {
|
|
|
|
const char *name;
|
|
|
|
struct kvm_events_ops *ops;
|
|
|
|
};
|
|
|
|
|
|
|
|
void exit_event_get_key(struct perf_evsel *evsel,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct event_key *key);
|
|
|
|
bool exit_event_begin(struct perf_evsel *evsel,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct event_key *key);
|
|
|
|
bool exit_event_end(struct perf_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 perf_evsel *evsel);
|
|
|
|
bool kvm_entry_event(struct perf_evsel *evsel);
|
perf kvm/powerpc: Port perf kvm stat to powerpc
perf kvm can be used to analyze guest exit reasons. This support already
exists in x86. Hence, porting it to powerpc.
- To trace KVM events :
perf kvm stat record
If many guests are running, we can track for a specific guest by using
--pid as in : perf kvm stat record --pid <pid>
- To see the results :
perf kvm stat report
The result shows the number of exits (from the guest context to
host/hypervisor context) grouped by their respective exit reasons with
their frequency.
Since, different powerpc machines have different KVM tracepoints, this
patch discovers the available tracepoints dynamically and accordingly
looks for them. If any single tracepoint is not present, this support
won't be enabled for reporting. To record, this will fail if any of the
events we are looking to record isn't available. Right now, its only
supported on PowerPC Book3S_HV architectures.
To analyze the different exits, group them and present them (in a slight
descriptive way) to the user, we need a mapping between the "exit code"
(dumped in the kvm_guest_exit tracepoint data) and to its related
Interrupt vector description (exit reason). This patch adds this mapping
in book3s_hv_exits.h.
It records on two available KVM tracepoints for book3s_hv:
"kvm_hv:kvm_guest_exit" and "kvm_hv:kvm_guest_enter".
Here is a sample o/p:
# pgrep qemu
19378
60515
2 Guests are running on the host.
# perf kvm stat record -a
^C[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 4.153 MB perf.data.guest (39624
samples) ]
# perf kvm stat report -p 60515
Analyze events for pid(s) 60515, all VCPUs:
VM-EXIT Samples Samples% Time% MinTime MaxTime Avg time
SYSCALL 9141 63.67% 7.49% 1.26us 5782.39us 9.87us (+- 6.46%)
H_DATA_STORAGE 4114 28.66% 5.07% 1.72us 4597.68us 14.84us (+-20.06%)
HV_DECREMENTER 418 2.91% 4.26% 0.70us 30002.22us 122.58us (+-70.29%)
EXTERNAL 392 2.73% 0.06% 0.64us 104.10us 1.94us (+-18.83%)
RETURN_TO_HOST 287 2.00% 83.11% 1.53us 124240.15us 3486.52us (+-16.81%)
H_INST_STORAGE 5 0.03% 0.00% 1.88us 3.73us 2.39us (+-14.20%)
Total Samples:14357, Total events handled time:1203918.42us.
Signed-off-by: Hemant Kumar <hemant@linux.vnet.ibm.com>
Cc: Alexander Yarygin <yarygin@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Scott Wood <scottwood@freescale.com>
Cc: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Cc: linuxppc-dev@lists.ozlabs.org
Link: http://lkml.kernel.org/r/1453962787-15376-3-git-send-email-hemant@linux.vnet.ibm.com
Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-01-28 14:33:06 +08:00
|
|
|
int setup_kvm_events_tp(struct perf_kvm_stat *kvm);
|
2014-07-03 22:29:05 +08:00
|
|
|
|
|
|
|
#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);
|
|
|
|
|
2016-01-28 14:33:05 +08:00
|
|
|
extern const char *kvm_events_tp[];
|
2014-07-03 22:29:05 +08:00
|
|
|
extern struct kvm_reg_events_ops kvm_reg_events_ops[];
|
2014-07-03 22:29:06 +08:00
|
|
|
extern const char * const kvm_skip_events[];
|
2016-01-28 14:33:04 +08:00
|
|
|
extern const char *vcpu_id_str;
|
|
|
|
extern const int decode_str_len;
|
|
|
|
extern const char *kvm_exit_reason;
|
|
|
|
extern const char *kvm_entry_trace;
|
|
|
|
extern const char *kvm_exit_trace;
|
2014-07-03 22:29:05 +08:00
|
|
|
|
|
|
|
#endif /* __PERF_KVM_STAT_H */
|