| 627 | } |
| 628 | |
| 629 | static void |
| 630 | meminfo_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 | |
| 645 | static void |
| 646 | nic_stats_display(uint16_t port_id) |
no test coverage detected