From: Dave Barach Date: Sat, 12 Dec 2015 15:46:46 +0000 (-0500) Subject: Reenable memory allocator small-object cache, disabled by mistake. X-Git-Tag: odp_vpp~2306 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=63a254f37ddc5fbdb24cb4b484b409b97fd28c17;p=odp4vpp.git Reenable memory allocator small-object cache, disabled by mistake. Change-Id: I006282fd3991f7ba7b8315670724c065bd71a671 Signed-off-by: Dave Barach --- diff --git a/vppinfra/vppinfra/mheap_bootstrap.h b/vppinfra/vppinfra/mheap_bootstrap.h index 989f941e..8a2c991b 100644 --- a/vppinfra/vppinfra/mheap_bootstrap.h +++ b/vppinfra/vppinfra/mheap_bootstrap.h @@ -144,7 +144,7 @@ typedef struct { /* Without vector instructions don't bother with small object cache. */ #ifdef CLIB_HAVE_VEC128 -#define MHEAP_HAVE_SMALL_OBJECT_CACHE 0 +#define MHEAP_HAVE_SMALL_OBJECT_CACHE 1 #else #define MHEAP_HAVE_SMALL_OBJECT_CACHE 0 #endif