KVM: selftests: Move __vm_xsave_require_permission() below CPUID helpers
authorSean Christopherson <seanjc@google.com>
Mon, 28 Nov 2022 22:57:33 +0000 (22:57 +0000)
committerSean Christopherson <seanjc@google.com>
Thu, 1 Dec 2022 23:31:45 +0000 (15:31 -0800)
Move __vm_xsave_require_permission() below the CPUID helpers so that a
future change can reference the cached result of KVM_GET_SUPPORTED_CPUID
while keeping the definition of the variable close to its intended user,
kvm_get_supported_cpuid().

No functional change intended.

Signed-off-by: Sean Christopherson <seanjc@google.com>
Link: https://lore.kernel.org/r/20221128225735.3291648-3-seanjc@google.com
tools/testing/selftests/kvm/lib/x86_64/processor.c

index aac7b32..2306746 100644 (file)
@@ -552,38 +552,6 @@ static void vcpu_setup(struct kvm_vm *vm, struct kvm_vcpu *vcpu)
        vcpu_sregs_set(vcpu, &sregs);
 }
 
-void __vm_xsave_require_permission(int bit, const char *name)
-{
-       int kvm_fd;
-       u64 bitmask;
-       long rc;
-       struct kvm_device_attr attr = {
-               .group = 0,
-               .attr = KVM_X86_XCOMP_GUEST_SUPP,
-               .addr = (unsigned long) &bitmask
-       };
-
-       kvm_fd = open_kvm_dev_path_or_exit();
-       rc = __kvm_ioctl(kvm_fd, KVM_GET_DEVICE_ATTR, &attr);
-       close(kvm_fd);
-
-       if (rc == -1 && (errno == ENXIO || errno == EINVAL))
-               __TEST_REQUIRE(0, "KVM_X86_XCOMP_GUEST_SUPP not supported");
-
-       TEST_ASSERT(rc == 0, "KVM_GET_DEVICE_ATTR(0, KVM_X86_XCOMP_GUEST_SUPP) error: %ld", rc);
-
-       __TEST_REQUIRE(bitmask & (1ULL << bit),
-                      "Required XSAVE feature '%s' not supported", name);
-
-       TEST_REQUIRE(!syscall(SYS_arch_prctl, ARCH_REQ_XCOMP_GUEST_PERM, bit));
-
-       rc = syscall(SYS_arch_prctl, ARCH_GET_XCOMP_GUEST_PERM, &bitmask);
-       TEST_ASSERT(rc == 0, "prctl(ARCH_GET_XCOMP_GUEST_PERM) error: %ld", rc);
-       TEST_ASSERT(bitmask & (1ULL << bit),
-                   "prctl(ARCH_REQ_XCOMP_GUEST_PERM) failure bitmask=0x%lx",
-                   bitmask);
-}
-
 void kvm_arch_vm_post_create(struct kvm_vm *vm)
 {
        vm_create_irqchip(vm);
@@ -705,6 +673,38 @@ uint64_t kvm_get_feature_msr(uint64_t msr_index)
        return buffer.entry.data;
 }
 
+void __vm_xsave_require_permission(int bit, const char *name)
+{
+       int kvm_fd;
+       u64 bitmask;
+       long rc;
+       struct kvm_device_attr attr = {
+               .group = 0,
+               .attr = KVM_X86_XCOMP_GUEST_SUPP,
+               .addr = (unsigned long) &bitmask
+       };
+
+       kvm_fd = open_kvm_dev_path_or_exit();
+       rc = __kvm_ioctl(kvm_fd, KVM_GET_DEVICE_ATTR, &attr);
+       close(kvm_fd);
+
+       if (rc == -1 && (errno == ENXIO || errno == EINVAL))
+               __TEST_REQUIRE(0, "KVM_X86_XCOMP_GUEST_SUPP not supported");
+
+       TEST_ASSERT(rc == 0, "KVM_GET_DEVICE_ATTR(0, KVM_X86_XCOMP_GUEST_SUPP) error: %ld", rc);
+
+       __TEST_REQUIRE(bitmask & (1ULL << bit),
+                      "Required XSAVE feature '%s' not supported", name);
+
+       TEST_REQUIRE(!syscall(SYS_arch_prctl, ARCH_REQ_XCOMP_GUEST_PERM, bit));
+
+       rc = syscall(SYS_arch_prctl, ARCH_GET_XCOMP_GUEST_PERM, &bitmask);
+       TEST_ASSERT(rc == 0, "prctl(ARCH_GET_XCOMP_GUEST_PERM) error: %ld", rc);
+       TEST_ASSERT(bitmask & (1ULL << bit),
+                   "prctl(ARCH_REQ_XCOMP_GUEST_PERM) failure bitmask=0x%lx",
+                   bitmask);
+}
+
 void vcpu_init_cpuid(struct kvm_vcpu *vcpu, const struct kvm_cpuid2 *cpuid)
 {
        TEST_ASSERT(cpuid != vcpu->cpuid, "@cpuid can't be the vCPU's CPUID");