]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_eal/common/include/rte_malloc_heap.h
mem: rework memzone to be allocated by malloc
[dpdk.git] / lib / librte_eal / common / include / rte_malloc_heap.h
index f727b7a8b811f9edf20479f11bbf0addd0c58656..b27035628f1e74b9a486b40e9a660a12f527288a 100644 (file)
 #include <stddef.h>
 #include <sys/queue.h>
 #include <rte_spinlock.h>
+#include <rte_memory.h>
 
 /* Number of free lists per heap, grouped by size. */
-#define RTE_HEAP_NUM_FREELISTS  5
+#define RTE_HEAP_NUM_FREELISTS  13
 
 /**
  * Structure to hold malloc heap
@@ -47,7 +48,6 @@
 struct malloc_heap {
        rte_spinlock_t lock;
        LIST_HEAD(, malloc_elem) free_head[RTE_HEAP_NUM_FREELISTS];
-       unsigned mz_count;
        unsigned alloc_count;
        size_t total_size;
 } __rte_cache_aligned;