Searched refs:max_vcpus (Results 1 – 10 of 10) sorted by relevance
/linux/tools/testing/selftests/kvm/ |
A D | memslot_modification_stress_test.c | 145 int max_vcpus = kvm_check_cap(KVM_CAP_MAX_VCPUS); in main() local 171 TEST_ASSERT(nr_vcpus > 0 && nr_vcpus <= max_vcpus, in main() 173 max_vcpus); in main()
|
A D | dirty_log_perf_test.c | 329 int max_vcpus = kvm_check_cap(KVM_CAP_MAX_VCPUS); in main() local 367 TEST_ASSERT(nr_vcpus > 0 && nr_vcpus <= max_vcpus, in main() 368 "Invalid number of vcpus, must be between 1 and %d", max_vcpus); in main()
|
A D | demand_paging_test.c | 401 int max_vcpus = kvm_check_cap(KVM_CAP_MAX_VCPUS); in main() local 434 TEST_ASSERT(nr_vcpus > 0 && nr_vcpus <= max_vcpus, in main() 435 "Invalid number of vcpus, must be between 1 and %d", max_vcpus); in main()
|
A D | kvm_page_table_test.c | 465 int max_vcpus = kvm_check_cap(KVM_CAP_MAX_VCPUS); in main() local 487 TEST_ASSERT(nr_vcpus > 0 && nr_vcpus <= max_vcpus, in main() 488 "Invalid number of vcpus, must be between 1 and %d", max_vcpus); in main()
|
/linux/arch/powerpc/include/asm/ |
A D | xive.h | 109 u32 xive_native_alloc_vp_block(u32 max_vcpus); 164 static inline u32 xive_native_alloc_vp_block(u32 max_vcpus) { return XIVE_INVALID_VP; } in xive_native_alloc_vp_block() argument
|
/linux/arch/arm64/kvm/vgic/ |
A D | vgic-init.c | 100 kvm->arch.max_vcpus = VGIC_V2_MAX_CPUS; in kvm_vgic_create() 102 kvm->arch.max_vcpus = VGIC_V3_MAX_CPUS; in kvm_vgic_create() 104 if (atomic_read(&kvm->online_vcpus) > kvm->arch.max_vcpus) { in kvm_vgic_create()
|
/linux/arch/powerpc/sysdev/xive/ |
A D | native.c | 653 u32 xive_native_alloc_vp_block(u32 max_vcpus) in xive_native_alloc_vp_block() argument 658 order = fls(max_vcpus) - 1; in xive_native_alloc_vp_block() 659 if (max_vcpus > (1 << order)) in xive_native_alloc_vp_block() 663 max_vcpus, order); in xive_native_alloc_vp_block()
|
/linux/arch/arm64/kvm/ |
A D | arm.c | 156 kvm->arch.max_vcpus = kvm_arm_default_max_vcpus(); in kvm_arch_init_vm() 238 r = kvm->arch.max_vcpus; in kvm_vm_ioctl_check_extension() 314 if (id >= kvm->arch.max_vcpus) in kvm_arch_vcpu_precreate()
|
/linux/arch/arm64/include/asm/ |
A D | kvm_host.h | 112 int max_vcpus; member
|
/linux/Documentation/virt/kvm/ |
A D | api.rst | 302 This API adds a vcpu to a virtual machine. No more than max_vcpus may be added. 305 The recommended max_vcpus value can be retrieved using the KVM_CAP_NR_VCPUS of 307 The maximum possible value for max_vcpus can be retrieved using the 310 If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4 312 If the KVM_CAP_MAX_VCPUS does not exist, you should assume that max_vcpus is 3887 and it must not exceed (max_vcpus + 32) * sizeof(struct kvm_s390_irq),
|
Completed in 24 milliseconds