mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-17 10:11:33 +00:00

For `perf kvm stat` on the RISC-V, in order to avoid the occurrence of `UNKNOWN` event names, interrupts should be reported in addition to exceptions. testing without patch: Event name Samples Sample% Time(ns) --------------------------- -------- -------- ------------ STORE_GUEST_PAGE_FAULT 1496461 53.00% 889612544 UNKNOWN 887514 31.00% 272857968 LOAD_GUEST_PAGE_FAULT 305164 10.00% 189186331 VIRTUAL_INST_FAULT 70625 2.00% 134114260 SUPERVISOR_SYSCALL 32014 1.00% 58577110 INST_GUEST_PAGE_FAULT 1 0.00% 2545 testing with patch: Event name Samples Sample% Time(ns) --------------------------- -------- -------- ------------ IRQ_S_TIMER 211271 58.00% 738298680600 EXC_STORE_GUEST_PAGE_FAULT 111279 30.00% 130725914800 EXC_LOAD_GUEST_PAGE_FAULT 22039 6.00% 25441480600 EXC_VIRTUAL_INST_FAULT 8913 2.00% 21015381600 IRQ_VS_EXT 4748 1.00% 10155464300 IRQ_S_EXT 2802 0.00% 13288775800 IRQ_S_SOFT 1998 0.00% 4254129300 Signed-off-by: Quan Zhou <zhouquan@iscas.ac.cn> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Link: https://lore.kernel.org/r/9693132df4d0f857b8be3a75750c36b40213fcc0.1726211632.git.zhouquan@iscas.ac.cn Signed-off-by: Anup Patel <anup@brainfault.org>
79 lines
1.7 KiB
C
79 lines
1.7 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Arch specific functions for perf kvm stat.
|
|
*
|
|
* Copyright 2024 Beijing ESWIN Computing Technology Co., Ltd.
|
|
*
|
|
*/
|
|
#include <errno.h>
|
|
#include <memory.h>
|
|
#include "../../../util/evsel.h"
|
|
#include "../../../util/kvm-stat.h"
|
|
#include "riscv_trap_types.h"
|
|
#include "debug.h"
|
|
|
|
define_exit_reasons_table(riscv_exit_reasons, kvm_riscv_trap_class);
|
|
|
|
const char *vcpu_id_str = "id";
|
|
const char *kvm_exit_reason = "scause";
|
|
const char *kvm_entry_trace = "kvm:kvm_entry";
|
|
const char *kvm_exit_trace = "kvm:kvm_exit";
|
|
|
|
const char *kvm_events_tp[] = {
|
|
"kvm:kvm_entry",
|
|
"kvm:kvm_exit",
|
|
NULL,
|
|
};
|
|
|
|
static void event_get_key(struct evsel *evsel,
|
|
struct perf_sample *sample,
|
|
struct event_key *key)
|
|
{
|
|
key->info = 0;
|
|
key->key = evsel__intval(evsel, sample, kvm_exit_reason) & ~CAUSE_IRQ_FLAG;
|
|
key->exit_reasons = riscv_exit_reasons;
|
|
}
|
|
|
|
static bool event_begin(struct evsel *evsel,
|
|
struct perf_sample *sample __maybe_unused,
|
|
struct event_key *key __maybe_unused)
|
|
{
|
|
return evsel__name_is(evsel, kvm_entry_trace);
|
|
}
|
|
|
|
static bool event_end(struct evsel *evsel,
|
|
struct perf_sample *sample,
|
|
struct event_key *key)
|
|
{
|
|
if (evsel__name_is(evsel, kvm_exit_trace)) {
|
|
event_get_key(evsel, sample, key);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static struct kvm_events_ops exit_events = {
|
|
.is_begin_event = event_begin,
|
|
.is_end_event = event_end,
|
|
.decode_key = exit_event_decode_key,
|
|
.name = "VM-EXIT"
|
|
};
|
|
|
|
struct kvm_reg_events_ops kvm_reg_events_ops[] = {
|
|
{
|
|
.name = "vmexit",
|
|
.ops = &exit_events,
|
|
},
|
|
{ NULL, NULL },
|
|
};
|
|
|
|
const char * const kvm_skip_events[] = {
|
|
NULL,
|
|
};
|
|
|
|
int cpu_isa_init(struct perf_kvm_stat *kvm, const char *cpuid __maybe_unused)
|
|
{
|
|
kvm->exit_reasons_isa = "riscv64";
|
|
return 0;
|
|
}
|