From: Luca Fancellu Date: Thu, 16 Dec 2021 22:43:19 +0000 (-0800) Subject: xen/arm: increase memory banks number define value X-Git-Tag: archive/raspbian/4.16.1-1+rpi1^2~38^2~53 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=81e6eabbfeab554db192ae6f0d1de8179daab2f0;p=xen.git xen/arm: increase memory banks number define value Currently the maximum number of memory banks (NR_MEM_BANKS define) is fixed to 128, but on some new platforms that have a large amount of memory, this value is not enough and prevents Xen from booting. Increase the value to 256. Signed-off-by: Luca Fancellu Reviewed-by: Stefano Stabellini (cherry picked from commit f1f38e26c3669f5e4583c3756f213c167d19651a) --- diff --git a/xen/include/asm-arm/setup.h b/xen/include/asm-arm/setup.h index 95da0b7ab9..07daf160dc 100644 --- a/xen/include/asm-arm/setup.h +++ b/xen/include/asm-arm/setup.h @@ -6,7 +6,7 @@ #define MIN_FDT_ALIGN 8 #define MAX_FDT_SIZE SZ_2M -#define NR_MEM_BANKS 128 +#define NR_MEM_BANKS 256 #define MAX_MODULES 32 /* Current maximum useful modules */