4096 is the maximum we can have right now in QEMU with vhost-user, so increase the libvhost-user limit as well. Signed-off-by: David Hildenbrand <david@xxxxxxxxxx> --- subprojects/libvhost-user/libvhost-user.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/subprojects/libvhost-user/libvhost-user.h b/subprojects/libvhost-user/libvhost-user.h index 3d13dfadde..d9628ed9f0 100644 --- a/subprojects/libvhost-user/libvhost-user.h +++ b/subprojects/libvhost-user/libvhost-user.h @@ -30,11 +30,8 @@ #define VHOST_MEMORY_BASELINE_NREGIONS 8 -/* - * Set a reasonable maximum number of ram slots, which will be supported by - * any architecture. - */ -#define VHOST_USER_MAX_RAM_SLOTS 32 +/* Set the RAM slots based on the maximum supported by QEMU vhost-user. */ +#define VHOST_USER_MAX_RAM_SLOTS 4096 #define VHOST_USER_HDR_SIZE offsetof(VhostUserMsg, payload.u64) -- 2.31.1