]> www.infradead.org Git - users/jedix/linux-maple.git/commit
RISC-V: KVM: Fix the size parameter check in SBI SFENCE calls
authorAnup Patel <apatel@ventanamicro.com>
Thu, 5 Jun 2025 06:14:46 +0000 (11:44 +0530)
committerAnup Patel <anup@brainfault.org>
Tue, 17 Jun 2025 04:48:40 +0000 (10:18 +0530)
commit6aba0cb5bba6141158d5449f2cf53187b7f755f9
tree10845b1fdb7dd8d0c0373572bf880cb992ff0c44
parente04c78d86a9699d136910cfc0bdcf01087e3267e
RISC-V: KVM: Fix the size parameter check in SBI SFENCE calls

As-per the SBI specification, an SBI remote fence operation applies
to the entire address space if either:
1) start_addr and size are both 0
2) size is equal to 2^XLEN-1

>From the above, only #1 is checked by SBI SFENCE calls so fix the
size parameter check in SBI SFENCE calls to cover #2 as well.

Fixes: 13acfec2dbcc ("RISC-V: KVM: Add remote HFENCE functions based on VCPU requests")
Reviewed-by: Atish Patra <atishp@rivosinc.com>
Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Link: https://lore.kernel.org/r/20250605061458.196003-2-apatel@ventanamicro.com
Signed-off-by: Anup Patel <anup@brainfault.org>
arch/riscv/kvm/vcpu_sbi_replace.c