]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
riscv: kvm: return SBI_ERR_FAILURE for pmu_event_info() when OOM
authorOsama Abdelkader <osama.abdelkader@gmail.com>
Thu, 14 May 2026 17:36:41 +0000 (19:36 +0200)
committerAnup Patel <anup@brainfault.org>
Mon, 18 May 2026 04:49:18 +0000 (10:19 +0530)
commit0e9d0e7a7c78db7aa1c13796c65cfe0aefa54a5b
treedd3fb3af7c8550154e2aaedc2b0ebd21c2a552d4
parent0835ee26938e15eccd70f7d33da386b6490f9449
riscv: kvm: return SBI_ERR_FAILURE for pmu_event_info() when OOM

kvm_riscv_vcpu_pmu_event_info() returned -ENOMEM from the
SBI extension handler, which caused kvm_riscv_vcpu_sbi_ecall()
to abort KVM_RUN and surface the error to userspace instead of
completing the ECALL with a negative SBI error in a0.
Use SBI_ERR_FAILURE and the normal retdata path, matching other PMU
handlers and kvm_sbi_ext_pmu_handler comment.

Fixes: e309fd113b9f ("RISC-V: KVM: Implement get event info function")
Cc: stable@vger.kernel.org
Signed-off-by: Osama Abdelkader <osama.abdelkader@gmail.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Link: https://lore.kernel.org/r/20260514173642.41448-2-osama.abdelkader@gmail.com
Signed-off-by: Anup Patel <anup@brainfault.org>
arch/riscv/kvm/vcpu_pmu.c