mem: rework memzone to be allocated by malloc
[dpdk.git] / lib / librte_eal / common / include / rte_malloc_heap.h
index f727b7a..b270356 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;