MCPcopy Create free account
hub / github.com/F-Stack/f-stack / meminfo_display

Function meminfo_display

dpdk/app/proc-info/main.c:629–643  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

627}
628
629static void
630meminfo_display(void)
631{
632 printf("----------- MEMORY_SEGMENTS -----------\n");
633 rte_dump_physmem_layout(stdout);
634 printf("--------- END_MEMORY_SEGMENTS ---------\n");
635
636 printf("------------ MEMORY_ZONES -------------\n");
637 rte_memzone_dump(stdout);
638 printf("---------- END_MEMORY_ZONES -----------\n");
639
640 printf("------------- TAIL_QUEUES -------------\n");
641 rte_dump_tailq(stdout);
642 printf("---------- END_TAIL_QUEUES ------------\n");
643}
644
645static void
646nic_stats_display(uint16_t port_id)

Callers 1

mainFunction · 0.85

Calls 4

rte_dump_physmem_layoutFunction · 0.85
rte_memzone_dumpFunction · 0.85
rte_dump_tailqFunction · 0.85
printfFunction · 0.50

Tested by

no test coverage detected