| 886 | } |
| 887 | |
| 888 | static int |
| 889 | dump_packets_core(void *arg) |
| 890 | { |
| 891 | struct pdump_tuples *pt = (struct pdump_tuples *) arg; |
| 892 | |
| 893 | printf(" core (%u); port %u device (%s) queue %u\n", |
| 894 | rte_lcore_id(), pt->port, pt->device_id, pt->queue); |
| 895 | fflush(stdout); |
| 896 | |
| 897 | while (!quit_signal) |
| 898 | pdump_packets(pt); |
| 899 | |
| 900 | return 0; |
| 901 | } |
| 902 | |
| 903 | static unsigned int |
| 904 | get_next_core(unsigned int lcore) |
nothing calls this directly
no test coverage detected