]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
RISC-V: KVM: Fix KVM_GET_REG_LIST API for ISA_EXT registers
authorAnup Patel <apatel@ventanamicro.com>
Mon, 18 Sep 2023 06:18:29 +0000 (11:48 +0530)
committerAnup Patel <anup@brainfault.org>
Thu, 21 Sep 2023 09:33:59 +0000 (15:03 +0530)
The ISA_EXT registers to enabled/disable ISA extensions for VCPU
are always available when underlying host has the corresponding
ISA extension. The copy_isa_ext_reg_indices() called by the
KVM_GET_REG_LIST API does not align with this expectation so
let's fix it.

Fixes: 031f9efafc08 ("KVM: riscv: Add KVM_GET_REG_LIST API support")
Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Atish Patra <atishp@rivosinc.com>
Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
Signed-off-by: Anup Patel <anup@brainfault.org>
arch/riscv/kvm/vcpu_onereg.c

index 1b7e9fa265cbb8dd68b30cc06ed8b7b00dc03fba..e7e833ced91be66d5a60af9bcb7398cdfb36545b 100644 (file)
@@ -842,7 +842,7 @@ static int copy_isa_ext_reg_indices(const struct kvm_vcpu *vcpu,
                u64 reg = KVM_REG_RISCV | size | KVM_REG_RISCV_ISA_EXT | i;
 
                isa_ext = kvm_isa_ext_arr[i];
-               if (!__riscv_isa_extension_available(vcpu->arch.isa, isa_ext))
+               if (!__riscv_isa_extension_available(NULL, isa_ext))
                        continue;
 
                if (uindices) {