Home
last modified time | relevance | path

Searched refs:heap_id (Results 1 – 3 of 3) sorted by relevance

/dpdk/lib/eal/common/
H A Dmalloc_heap.c644 unsigned int heap_id, unsigned int flags, size_t align, in malloc_heap_alloc_on_heap_id() argument
648 struct malloc_heap *heap = &mcfg->malloc_heaps[heap_id]; in malloc_heap_alloc_on_heap_id()
671 socket_id = rte_socket_id_by_idx(heap_id); in malloc_heap_alloc_on_heap_id()
727 int socket, heap_id, i; in malloc_heap_alloc() local
743 heap_id = malloc_socket_to_heap_id(socket); in malloc_heap_alloc()
745 if (heap_id < 0) in malloc_heap_alloc()
757 if (i == heap_id) in malloc_heap_alloc()
772 struct malloc_heap *heap = &mcfg->malloc_heaps[heap_id]; in heap_alloc_biggest_on_heap_id()
790 int socket, i, cur_socket, heap_id; in malloc_heap_alloc_biggest() local
806 heap_id = malloc_socket_to_heap_id(socket); in malloc_heap_alloc_biggest()
[all …]
H A Drte_malloc.c333 unsigned int heap_id; in rte_malloc_dump_stats() local
337 for (heap_id = 0; heap_id < RTE_MAX_HEAPS; heap_id++) { in rte_malloc_dump_stats()
338 struct malloc_heap *heap = &mcfg->malloc_heaps[heap_id]; in rte_malloc_dump_stats()
342 fprintf(f, "Heap id:%u\n", heap_id); in rte_malloc_dump_stats()
H A Deal_common_memory.c1130 unsigned int heap_id; in handle_eal_heap_info_request() local
1135 heap_id = (unsigned int)strtoul(params, NULL, 10); in handle_eal_heap_info_request()
1138 heap = &mcfg->malloc_heaps[heap_id]; in handle_eal_heap_info_request()
1142 rte_tel_data_add_dict_int(d, "Head id", heap_id); in handle_eal_heap_info_request()
1165 unsigned int heap_id; in handle_eal_heap_list_request() local
1169 for (heap_id = 0; heap_id < RTE_MAX_HEAPS; heap_id++) { in handle_eal_heap_list_request()
1170 struct malloc_heap *heap = &mcfg->malloc_heaps[heap_id]; in handle_eal_heap_list_request()
1174 rte_tel_data_add_array_int(d, heap_id); in handle_eal_heap_list_request()