From: Bruce Richardson Date: Thu, 2 Jul 2020 10:57:21 +0000 (+0100) Subject: mem: fix 32-bit init config with meson X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b29ac33ffccf856825c42dc11185b112f569ba57;hp=b29ac33ffccf856825c42dc11185b112f569ba57;p=dpdk.git mem: fix 32-bit init config with meson When building with meson, the default size of virtual address space reserved for mapping pages was globally set at 512GB, which is too big for use in 32-bit processes. To match the behaviour with "make", we configure this to be 512GB for 64-bit and 2GB for 32-bit builds. Bugzilla ID: 498 Fixes: 66cc45e293ed ("mem: replace memseg with memseg lists") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Tested-by: Ferruh Yigit ---