| 827 | } |
| 828 | |
| 829 | static inline struct fwd_lcore * |
| 830 | current_fwd_lcore(void) |
| 831 | { |
| 832 | struct fwd_lcore *fc = lcore_to_fwd_lcore(rte_lcore_id()); |
| 833 | |
| 834 | if (fc == NULL) |
| 835 | rte_panic("lcore_id of current thread not found in fwd_lcores_cpuids\n"); |
| 836 | |
| 837 | return fc; |
| 838 | } |
| 839 | |
| 840 | void |
| 841 | parse_fwd_portlist(const char *port); |
no test coverage detected