]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
KVM: selftests: Fix vcpu_get_stats_fd() ioctl name
authorZongyao Chen <ZongYao.Chen@linux.alibaba.com>
Mon, 18 May 2026 07:10:08 +0000 (15:10 +0800)
committerSean Christopherson <seanjc@google.com>
Fri, 22 May 2026 14:08:21 +0000 (07:08 -0700)
vcpu_get_stats_fd() invokes KVM_GET_STATS_FD, but its assertion reports
KVM_CHECK_EXTENSION if the ioctl fails.  Use KVM_GET_STATS_FD in the
assertion so failures point at the ioctl that actually failed.

Fixes: 1b78d474ce4e ("KVM: selftests: Add logic to detect if ioctl() failed because VM was killed")
Signed-off-by: Zongyao Chen <ZongYao.Chen@linux.alibaba.com>
Link: https://patch.msgid.link/20260518071008.2091335-1-ZongYao.Chen@linux.alibaba.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
tools/testing/selftests/kvm/include/kvm_util.h

index 2ecaaa0e9965409f1efe729e59993480f56cabec..04a910164a296a95fc0b19abe4ab626ec5f10306 100644 (file)
@@ -876,7 +876,7 @@ static inline int vcpu_get_stats_fd(struct kvm_vcpu *vcpu)
 {
        int fd = __vcpu_ioctl(vcpu, KVM_GET_STATS_FD, NULL);
 
-       TEST_ASSERT_VM_VCPU_IOCTL(fd >= 0, KVM_CHECK_EXTENSION, fd, vcpu->vm);
+       TEST_ASSERT_VM_VCPU_IOCTL(fd >= 0, KVM_GET_STATS_FD, fd, vcpu->vm);
        return fd;
 }