Searched refs:sock_stats (Results 1 – 2 of 2) sorted by relevance
| /dpdk/lib/eal/common/ |
| H A D | rte_malloc.c | 334 struct rte_malloc_socket_stats sock_stats; in rte_malloc_dump_stats() local 340 malloc_heap_get_stats(heap, &sock_stats); in rte_malloc_dump_stats() 344 fprintf(f, "\tHeap_size:%zu,\n", sock_stats.heap_totalsz_bytes); in rte_malloc_dump_stats() 345 fprintf(f, "\tFree_size:%zu,\n", sock_stats.heap_freesz_bytes); in rte_malloc_dump_stats() 346 fprintf(f, "\tAlloc_size:%zu,\n", sock_stats.heap_allocsz_bytes); in rte_malloc_dump_stats() 348 sock_stats.greatest_free_size); in rte_malloc_dump_stats() 349 fprintf(f, "\tAlloc_count:%u,\n",sock_stats.alloc_count); in rte_malloc_dump_stats() 350 fprintf(f, "\tFree_count:%u,\n", sock_stats.free_count); in rte_malloc_dump_stats()
|
| H A D | eal_common_memory.c | 1128 struct rte_malloc_socket_stats sock_stats; in handle_eal_heap_info_request() local 1139 malloc_heap_get_stats(heap, &sock_stats); in handle_eal_heap_info_request() 1145 sock_stats.heap_totalsz_bytes); in handle_eal_heap_info_request() 1146 rte_tel_data_add_dict_u64(d, "Free_size", sock_stats.heap_freesz_bytes); in handle_eal_heap_info_request() 1148 sock_stats.heap_allocsz_bytes); in handle_eal_heap_info_request() 1150 sock_stats.greatest_free_size); in handle_eal_heap_info_request() 1151 rte_tel_data_add_dict_u64(d, "Alloc_count", sock_stats.alloc_count); in handle_eal_heap_info_request() 1152 rte_tel_data_add_dict_u64(d, "Free_count", sock_stats.free_count); in handle_eal_heap_info_request() 1164 struct rte_malloc_socket_stats sock_stats; in handle_eal_heap_list_request() local 1172 malloc_heap_get_stats(heap, &sock_stats); in handle_eal_heap_list_request() [all …]
|