Commit ea138a60 authored by Samuel Holland's avatar Samuel Holland Committed by Anup Patel
Browse files

RISC-V: KVM: Fix check for local interrupts on riscv32



To set all 64 bits in the mask on a 32-bit system, the constant must
have type `unsigned long long`.

Fixes: 6b1e8ba4 ("RISC-V: KVM: Use bitmap for irqs_pending and irqs_pending_mask")
Signed-off-by: default avatarSamuel Holland <samuel.holland@sifive.com>
Reviewed-by: default avatarAndrew Jones <ajones@ventanamicro.com>
Link: https://lore.kernel.org/r/20251016001714.3889380-1-samuel.holland@sifive.com


Signed-off-by: default avatarAnup Patel <anup@brainfault.org>
parent 3a866087
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -212,7 +212,7 @@ int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)

int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
{
	return (kvm_riscv_vcpu_has_interrupts(vcpu, -1UL) &&
	return (kvm_riscv_vcpu_has_interrupts(vcpu, -1ULL) &&
		!kvm_riscv_vcpu_stopped(vcpu) && !vcpu->arch.pause);
}