Reenable memory allocator small-object cache, disabled by mistake. 42/42/1
authorDave Barach <[email protected]>
Sat, 12 Dec 2015 15:46:46 +0000 (10:46 -0500)
committerDave Barach <[email protected]>
Sat, 12 Dec 2015 15:47:01 +0000 (10:47 -0500)
Change-Id: I006282fd3991f7ba7b8315670724c065bd71a671
Signed-off-by: Dave Barach <[email protected]>
vppinfra/vppinfra/mheap_bootstrap.h

index 989f941..8a2c991 100644 (file)
@@ -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