]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
KVM: selftests: Fix typo in hyperv cpuid test message
authorAlok Tiwari <alok.a.tiwari@oracle.com>
Sun, 24 Aug 2025 18:16:40 +0000 (11:16 -0700)
committerSean Christopherson <seanjc@google.com>
Mon, 8 Sep 2025 20:03:22 +0000 (13:03 -0700)
Fix a typo in hyperv_cpuid.c test assertion log:
replace "our of supported range" -> "out of supported range".

Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
Link: https://lore.kernel.org/r/20250824181642.629297-1-alok.a.tiwari@oracle.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
tools/testing/selftests/kvm/x86/hyperv_cpuid.c

index c863a689aa9850545d3636a96e80811da0e12c2e..3c21af811d8f16c3ec1b561a62b40e538ae9ae19 100644 (file)
@@ -45,7 +45,7 @@ static void test_hv_cpuid(struct kvm_vcpu *vcpu, bool evmcs_expected)
 
                TEST_ASSERT((entry->function >= 0x40000000) &&
                            (entry->function <= 0x40000082),
-                           "function %x is our of supported range",
+                           "function %x is out of supported range",
                            entry->function);
 
                TEST_ASSERT(entry->index == 0,