Re: [PATCH] LoongArch: KVM: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUS
From: Bibo Mao
Date: Tue Apr 28 2026 - 05:53:49 EST
On 2026/4/28 下午3:47, Qiang Ma wrote:
It doesn't make sense to return the recommended maximum number ofHi Qiang,
vCPUs which exceeds the maximum possible number of vCPUs.
Other architectures have already done this, such as Commit
57a2e13ebdda ("KVM: MIPS: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUS")
Fixes: 482795cb62aa ("LoongArch: KVM: Implement VM related functions")
Signed-off-by: Qiang Ma <maqianga@xxxxxxxxxxxxx>
---
arch/loongarch/kvm/vm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/loongarch/kvm/vm.c b/arch/loongarch/kvm/vm.c
index 8cc5ee1c53ef..1317c718f896 100644
--- a/arch/loongarch/kvm/vm.c
+++ b/arch/loongarch/kvm/vm.c
@@ -125,7 +125,7 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
r = 1;
break;
case KVM_CAP_NR_VCPUS:
- r = num_online_cpus();
+ r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS);
break;
case KVM_CAP_MAX_VCPUS:
r = KVM_MAX_VCPUS;
yes, this is better.
Though value of CONFIG_NR_CPUS is 2048, currently max CPU number of host hardware is 256 still because of limitation of AVEC and extioi HW irqchip.
If there is HW machine in future which supports more than 256 CPUs, the max online CPU is no more than 256 with existing kernel version. So I think that the "Fixes" tag is not necessary.
Reviewed-by: Bibo Mao <maobibo@xxxxxxxxxxx>