On Fri, Aug 19, 2022, Like Xu wrote:
From: Like Xu <likexu@xxxxxxxxxxx>
For most unit tests, the basic framework and use cases which test
any PMU counter do not require any changes, except for two things:
- No access to registers introduced only in PMU version 2 and above;
- Expanded tolerance for testing counter overflows
due to the loss of uniform control of the gloabl_ctrl register
Adding some pmu_version() return value checks can seamlessly support
Intel Arch PMU Version 1, while opening the door for AMD PMUs tests.
Phrase this as a command so that it's crystal clear that this is what the patch
does, as opposed to what the patch _can_ do.
Signed-off-by: Like Xu <likexu@xxxxxxxxxxx>
---
x86/pmu.c | 64 +++++++++++++++++++++++++++++++++++++------------------
1 file changed, 43 insertions(+), 21 deletions(-)
diff --git a/x86/pmu.c b/x86/pmu.c
index 25fafbe..826472c 100644
--- a/x86/pmu.c
+++ b/x86/pmu.c
@@ -125,14 +125,19 @@ static struct pmu_event* get_counter_event(pmu_counter_t *cnt)
static void global_enable(pmu_counter_t *cnt)
{
- cnt->idx = event_to_global_idx(cnt);
+ if (pmu_version() < 2)
Helper please.
+ return;
+ cnt->idx = event_to_global_idx(cnt);
wrmsr(MSR_CORE_PERF_GLOBAL_CTRL, rdmsr(MSR_CORE_PERF_GLOBAL_CTRL) |
(1ull << cnt->idx));
}
static void global_disable(pmu_counter_t *cnt)
{
+ if (pmu_version() < 2)
+ return;
+
wrmsr(MSR_CORE_PERF_GLOBAL_CTRL, rdmsr(MSR_CORE_PERF_GLOBAL_CTRL) &
~(1ull << cnt->idx));
}
@@ -301,7 +306,10 @@ static void check_counter_overflow(void)
count = cnt.count;
/* clear status before test */
- wrmsr(MSR_CORE_PERF_GLOBAL_OVF_CTRL, rdmsr(MSR_CORE_PERF_GLOBAL_STATUS));
+ if (pmu_version() > 1) {
Should be a helper to use from an earlier patch.
Hmm, looking forward, maybe have an upper level helper? E.g.
void pmu_clear_global_status_safe(void)
{
if (!exists)
return
wrmsr(...);
}
Ignore this suggestion if these checks go away in the future.
+ wrmsr(MSR_CORE_PERF_GLOBAL_OVF_CTRL,
+ rdmsr(MSR_CORE_PERF_GLOBAL_STATUS));
+ }
report_prefix_push("overflow");
@@ -327,13 +335,21 @@ static void check_counter_overflow(void)
cnt.config &= ~EVNTSEL_INT;
idx = event_to_global_idx(&cnt);
__measure(&cnt, cnt.count);
- report(cnt.count == 1, "cntr-%d", i);
+
+ report(check_irq() == (i % 2), "irq-%d", i);
+ if (pmu_version() > 1)
Helper.
+ report(cnt.count == 1, "cntr-%d", i);
+ else
+ report(cnt.count < 4, "cntr-%d", i);
+
+ if (pmu_version() < 2)
Helper.
+ continue;
+
status = rdmsr(MSR_CORE_PERF_GLOBAL_STATUS);
report(status & (1ull << idx), "status-%d", i);
wrmsr(MSR_CORE_PERF_GLOBAL_OVF_CTRL, status);
status = rdmsr(MSR_CORE_PERF_GLOBAL_STATUS);
report(!(status & (1ull << idx)), "status clear-%d", i);
- report(check_irq() == (i % 2), "irq-%d", i);
}
report_prefix_pop();
@@ -440,8 +456,10 @@ static void check_running_counter_wrmsr(void)
report(evt.count < gp_events[1].min, "cntr");
/* clear status before overflow test */
- wrmsr(MSR_CORE_PERF_GLOBAL_OVF_CTRL,
- rdmsr(MSR_CORE_PERF_GLOBAL_STATUS));
+ if (pmu_version() > 1) {
Helper. Curly braces aren't necessary.
+ wrmsr(MSR_CORE_PERF_GLOBAL_OVF_CTRL,
+ rdmsr(MSR_CORE_PERF_GLOBAL_STATUS));
+ }
start_event(&evt);
@@ -453,8 +471,11 @@ static void check_running_counter_wrmsr(void)
loop();
stop_event(&evt);
- status = rdmsr(MSR_CORE_PERF_GLOBAL_STATUS);
- report(status & 1, "status");
+
+ if (pmu_version() > 1) {
Helper.
+ status = rdmsr(MSR_CORE_PERF_GLOBAL_STATUS);
+ report(status & 1, "status");
Can you opportunistically provide a better message than "status"?
+ }
report_prefix_pop();
}
@@ -474,8 +495,10 @@ static void check_emulated_instr(void)
};
report_prefix_push("emulated instruction");
- wrmsr(MSR_CORE_PERF_GLOBAL_OVF_CTRL,
- rdmsr(MSR_CORE_PERF_GLOBAL_STATUS));
+ if (pmu_version() > 1) {
Helper, no curly braces. Ah, IIRC, kernel perf prefers curly braces if the code
spans multiple lines. KVM and KUT does not.
+ wrmsr(MSR_CORE_PERF_GLOBAL_OVF_CTRL,
+ rdmsr(MSR_CORE_PERF_GLOBAL_STATUS));
+ }
start_event(&brnch_cnt);
start_event(&instr_cnt);
@@ -509,7 +532,8 @@ static void check_emulated_instr(void)
:
: "eax", "ebx", "ecx", "edx");
- wrmsr(MSR_CORE_PERF_GLOBAL_CTRL, 0);
+ if (pmu_version() > 1)
Helper.
+ wrmsr(MSR_CORE_PERF_GLOBAL_CTRL, 0);
stop_event(&brnch_cnt);
stop_event(&instr_cnt);
@@ -520,10 +544,13 @@ static void check_emulated_instr(void)
"instruction count");
report(brnch_cnt.count - brnch_start >= EXPECTED_BRNCH,
"branch count");
- // Additionally check that those counters overflowed properly.
- status = rdmsr(MSR_CORE_PERF_GLOBAL_STATUS);
- report(status & 1, "instruction counter overflow");
- report(status & 2, "branch counter overflow");
+
+ if (pmu_version() > 1) {
Helper? E.g. if this is a "has architectural PMU".