[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH v7] xen: allow up to 16383 cpus
Hi Juergen, On 10/05/2024 15:16, Juergen Gross wrote: With lock handling now allowing up to 16384 cpus (spinlocks can handle 65535 cpus, rwlocks can handle 16384 cpus), raise the allowed limit for the number of cpus to be configured to 16383. The new limit is imposed by IOMMU_CMD_BUFFER_MAX_ENTRIES and QINVAL_MAX_ENTRY_NR required to be larger than 2 * CONFIG_NR_CPUS. Add a support limit of physical CPUs to SUPPORT.md (4096 on x86, 128 on ARM). Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> I am a bit surprised that this is kept given you added SUPPORT.md. I'd like Jan (or other x86 maintainers) to confirm they are happy with the proposed x86 security supported limit the SUPPORT.md. For Arm (only): Acked-by: Julien Grall <jgrall@xxxxxxxxxx> --- V5: - new patch (Jan Beulich) V7: - add SUPPORT.md and CHANGELOG.md entries --- CHANGELOG.md | 2 ++ SUPPORT.md | 5 +++++ xen/arch/Kconfig | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8041cfb7d2..c43c45d8d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - HVM PIRQs are disabled by default. - Reduce IOMMU setup time for hardware domain. - xl/libxl configures vkb=[] for HVM domains with priority over vkb_device. + - Increase the maximum number of CPUs Xen can be built for from 4095 to + 16383.### Added- On x86: diff --git a/SUPPORT.md b/SUPPORT.md index e10d46d924..d5d60c62ec 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -61,6 +61,11 @@ For the Cortex A77 r0p0 - r1p0, see Errata 1508412.Status, x86: Supported +### Physical CPUs+ + Status, x86: Supported up to 4096 + Status, ARM: Supported up to 128 + ### Host ACPI (via Domain 0)Status, x86 PV: Supporteddiff --git a/xen/arch/Kconfig b/xen/arch/Kconfig index 67ba38f32f..308ce129a8 100644 --- a/xen/arch/Kconfig +++ b/xen/arch/Kconfig @@ -6,7 +6,7 @@ config PHYS_ADDR_T_32config NR_CPUSint "Maximum number of CPUs" - range 1 4095 + range 1 16383 default "256" if X86 default "8" if ARM && RCAR3 default "4" if ARM && QEMU Cheers, -- Julien Grall
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |