* Function to dump contents of all heaps */
| 251 | * Function to dump contents of all heaps |
| 252 | */ |
| 253 | void |
| 254 | rte_malloc_dump_heaps(FILE *f) |
| 255 | { |
| 256 | struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config; |
| 257 | unsigned int idx; |
| 258 | |
| 259 | for (idx = 0; idx < RTE_MAX_HEAPS; idx++) { |
| 260 | fprintf(f, "Heap id: %u\n", idx); |
| 261 | malloc_heap_dump(&mcfg->malloc_heaps[idx], f); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | int |
| 266 | rte_malloc_heap_get_socket(const char *name) |