[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20221009033131.365-1-yuzenghui@huawei.com>
Date: Sun, 9 Oct 2022 11:31:31 +0800
From: Zenghui Yu <yuzenghui@...wei.com>
To: <kvmarm@...ts.linux.dev>, <kvmarm@...ts.cs.columbia.edu>,
<kvm@...r.kernel.org>, <linux-kernel@...r.kernel.org>
CC: <maz@...nel.org>, <andrew.jones@...ux.dev>, <james.morse@....com>,
<alexandru.elisei@....com>, <suzuki.poulose@....com>,
<oliver.upton@...ux.dev>, <pbonzini@...hat.com>,
<seanjc@...gle.com>, <wanghaibin.wang@...wei.com>,
Zenghui Yu <yuzenghui@...wei.com>
Subject: [PATCH] KVM: arm64: selftests: Fix multiple versions of GIC creation
Commit 98f94ce42ac6 ("KVM: selftests: Move KVM_CREATE_DEVICE_TEST code to
separate helper") wrongly converted a "real" GIC device creation to
__kvm_test_create_device() and caused the test failure on my D05 (which
supports v2 emulation). Fix it.
Fixes: 98f94ce42ac6 ("KVM: selftests: Move KVM_CREATE_DEVICE_TEST code to separate helper")
Signed-off-by: Zenghui Yu <yuzenghui@...wei.com>
---
tools/testing/selftests/kvm/aarch64/vgic_init.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/testing/selftests/kvm/aarch64/vgic_init.c b/tools/testing/selftests/kvm/aarch64/vgic_init.c
index e05ecb31823f..9c131d977a1b 100644
--- a/tools/testing/selftests/kvm/aarch64/vgic_init.c
+++ b/tools/testing/selftests/kvm/aarch64/vgic_init.c
@@ -662,8 +662,8 @@ int test_kvm_device(uint32_t gic_dev_type)
: KVM_DEV_TYPE_ARM_VGIC_V2;
if (!__kvm_test_create_device(v.vm, other)) {
- ret = __kvm_test_create_device(v.vm, other);
- TEST_ASSERT(ret && (errno == EINVAL || errno == EEXIST),
+ ret = __kvm_create_device(v.vm, other);
+ TEST_ASSERT(ret < 0 && (errno == EINVAL || errno == EEXIST),
"create GIC device while other version exists");
}
--
2.33.0
Powered by blists - more mailing lists