X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Fmem_mheap.c;h=0ca0053c77e4db5b1bd7fa874855f097b8aab726;hb=a6ef36b2c25de47824a1b45e147ab2fbf67c3a33;hp=9b2af520ca658f253bcd049bdb096b55a4c9ae31;hpb=7cd468a3d7dee7d6c92f69a0bb7061ae208ec727;p=vpp.git diff --git a/src/vppinfra/mem_mheap.c b/src/vppinfra/mem_mheap.c index 9b2af520ca6..0ca0053c77e 100644 --- a/src/vppinfra/mem_mheap.c +++ b/src/vppinfra/mem_mheap.c @@ -39,10 +39,6 @@ #include #include -/* Valgrind stuff. */ -#include -#include - void *clib_per_cpu_mheaps[CLIB_MAX_MHEAPS]; void @@ -95,32 +91,24 @@ clib_mem_init (void *memory, uword memory_size) return heap; } -#ifdef CLIB_LINUX_KERNEL -#include - -uword -clib_mem_get_page_size (void) +void * +clib_mem_init_thread_safe (void *memory, uword memory_size) { - return PAGE_SIZE; -} -#endif + mheap_t *h; + u8 *heap; -#ifdef CLIB_UNIX -uword -clib_mem_get_page_size (void) -{ - return getpagesize (); -} -#endif + clib_mem_init (memory, memory_size); -/* Make a guess for standalone. */ -#ifdef CLIB_STANDALONE -uword -clib_mem_get_page_size (void) -{ - return 4096; + heap = clib_mem_get_per_cpu_heap (); + ASSERT (heap); + + h = mheap_header (heap); + + /* make the main heap thread-safe */ + h->flags |= MHEAP_FLAG_THREAD_SAFE; + + return heap; } -#endif u8 * format_clib_mem_usage (u8 * s, va_list * va) @@ -156,6 +144,12 @@ clib_mem_trace (int enable) mheap_trace (clib_mem_get_heap (), enable); } +int +clib_mem_is_traced (void) +{ + return mheap_is_traced (clib_mem_get_heap ()); +} + /* * fd.io coding-style-patch-verification: ON *