* [PATCH] KVM: selftests: x86: Skip unsupported test when Arch LBR is available
@ 2022-05-10 3:50 Yang Weijiang
2022-05-10 15:06 ` Paolo Bonzini
0 siblings, 1 reply; 3+ messages in thread
From: Yang Weijiang @ 2022-05-10 3:50 UTC (permalink / raw)
To: pbonzini; +Cc: likexu, linux-kernel, kvm, Yang Weijiang
On Arch LBR capable platforms, LBR_FMT in perf capability msr is 0x3f,
so skip invalid format test if it's running on these platforms.
Opportunistically change the file name to reflect the tests actually
carried out.
Signed-off-by: Yang Weijiang <weijiang.yang@intel.com>
---
tools/testing/selftests/kvm/Makefile | 2 +-
.../x86_64/{vmx_pmu_msrs_test.c => vmx_pmu_caps_test.c} | 9 +++++++--
2 files changed, 8 insertions(+), 3 deletions(-)
rename tools/testing/selftests/kvm/x86_64/{vmx_pmu_msrs_test.c => vmx_pmu_caps_test.c} (88%)
diff --git a/tools/testing/selftests/kvm/Makefile b/tools/testing/selftests/kvm/Makefile
index 681b173aa87c..9a1a84803b01 100644
--- a/tools/testing/selftests/kvm/Makefile
+++ b/tools/testing/selftests/kvm/Makefile
@@ -81,7 +81,7 @@ TEST_GEN_PROGS_x86_64 += x86_64/xapic_state_test
TEST_GEN_PROGS_x86_64 += x86_64/xss_msr_test
TEST_GEN_PROGS_x86_64 += x86_64/debug_regs
TEST_GEN_PROGS_x86_64 += x86_64/tsc_msrs_test
-TEST_GEN_PROGS_x86_64 += x86_64/vmx_pmu_msrs_test
+TEST_GEN_PROGS_x86_64 += x86_64/vmx_pmu_caps_test
TEST_GEN_PROGS_x86_64 += x86_64/xen_shinfo_test
TEST_GEN_PROGS_x86_64 += x86_64/xen_vmcall_test
TEST_GEN_PROGS_x86_64 += x86_64/sev_migrate_tests
diff --git a/tools/testing/selftests/kvm/x86_64/vmx_pmu_msrs_test.c b/tools/testing/selftests/kvm/x86_64/vmx_pmu_caps_test.c
similarity index 88%
rename from tools/testing/selftests/kvm/x86_64/vmx_pmu_msrs_test.c
rename to tools/testing/selftests/kvm/x86_64/vmx_pmu_caps_test.c
index 2454a1f2ca0c..977c268a6ad4 100644
--- a/tools/testing/selftests/kvm/x86_64/vmx_pmu_msrs_test.c
+++ b/tools/testing/selftests/kvm/x86_64/vmx_pmu_caps_test.c
@@ -107,8 +107,13 @@ int main(int argc, char *argv[])
ASSERT_EQ(vcpu_get_msr(vm, VCPU_ID, MSR_IA32_PERF_CAPABILITIES), (u64)host_cap.lbr_format);
/* testcase 3, check invalid LBR format is rejected */
- ret = _vcpu_set_msr(vm, 0, MSR_IA32_PERF_CAPABILITIES, PMU_CAP_LBR_FMT);
- TEST_ASSERT(ret == 0, "Bad PERF_CAPABILITIES didn't fail.");
+ /* Note, on Arch LBR capable platforms, LBR_FMT in perf capability msr is 0x3f,
+ * so skip below test if running on these platforms. */
+ if (host_cap.lbr_format != PMU_CAP_LBR_FMT) {
+ ret = _vcpu_set_msr(vm, 0, MSR_IA32_PERF_CAPABILITIES, PMU_CAP_LBR_FMT);
+ TEST_ASSERT(ret == 0, "Bad PERF_CAPABILITIES didn't fail.");
+ }
+ printf("Completed pmu capability tests successfully.\n");
kvm_vm_free(vm);
}
--
2.27.0
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] KVM: selftests: x86: Skip unsupported test when Arch LBR is available
2022-05-10 3:50 [PATCH] KVM: selftests: x86: Skip unsupported test when Arch LBR is available Yang Weijiang
@ 2022-05-10 15:06 ` Paolo Bonzini
2022-05-11 0:26 ` Yang, Weijiang
0 siblings, 1 reply; 3+ messages in thread
From: Paolo Bonzini @ 2022-05-10 15:06 UTC (permalink / raw)
To: Yang Weijiang; +Cc: pbonzini, likexu, linux-kernel, kvm
Hi,
> - ret = _vcpu_set_msr(vm, 0, MSR_IA32_PERF_CAPABILITIES, PMU_CAP_LBR_FMT);
> - TEST_ASSERT(ret == 0, "Bad PERF_CAPABILITIES didn't fail.");
> + /* Note, on Arch LBR capable platforms, LBR_FMT in perf capability msr is 0x3f,
> + * so skip below test if running on these platforms. */
> + if (host_cap.lbr_format != PMU_CAP_LBR_FMT) {
> + ret = _vcpu_set_msr(vm, 0, MSR_IA32_PERF_CAPABILITIES, PMU_CAP_LBR_FMT);
> + TEST_ASSERT(ret == 0, "Bad PERF_CAPABILITIES didn't fail.");
> + }
Why not try a different value?
Paolo
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] KVM: selftests: x86: Skip unsupported test when Arch LBR is available
2022-05-10 15:06 ` Paolo Bonzini
@ 2022-05-11 0:26 ` Yang, Weijiang
0 siblings, 0 replies; 3+ messages in thread
From: Yang, Weijiang @ 2022-05-11 0:26 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: likexu, linux-kernel, kvm
On 5/10/2022 11:06 PM, Paolo Bonzini wrote:
> Hi,
>
>> - ret = _vcpu_set_msr(vm, 0, MSR_IA32_PERF_CAPABILITIES, PMU_CAP_LBR_FMT);
>> - TEST_ASSERT(ret == 0, "Bad PERF_CAPABILITIES didn't fail.");
>> + /* Note, on Arch LBR capable platforms, LBR_FMT in perf capability msr is 0x3f,
>> + * so skip below test if running on these platforms. */
>> + if (host_cap.lbr_format != PMU_CAP_LBR_FMT) {
>> + ret = _vcpu_set_msr(vm, 0, MSR_IA32_PERF_CAPABILITIES, PMU_CAP_LBR_FMT);
>> + TEST_ASSERT(ret == 0, "Bad PERF_CAPABILITIES didn't fail.");
>> + }
> Why not try a different value?
OK, I'll select a "real" invalid format and re-post the patch, thanks!
>
> Paolo
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-05-11 0:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-10 3:50 [PATCH] KVM: selftests: x86: Skip unsupported test when Arch LBR is available Yang Weijiang
2022-05-10 15:06 ` Paolo Bonzini
2022-05-11 0:26 ` Yang, Weijiang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome