| 24 | uint16_t nb_lcore_params; |
| 25 | |
| 26 | static void |
| 27 | rx_map_configure(uint8_t port_id, uint32_t queue, uint32_t core) |
| 28 | { |
| 29 | uint8_t n_rx_queue; |
| 30 | |
| 31 | n_rx_queue = lcore_conf[core].n_rx_queue; |
| 32 | lcore_conf[core].rx_queue_list[n_rx_queue].port_id = port_id; |
| 33 | lcore_conf[core].rx_queue_list[n_rx_queue].queue_id = queue; |
| 34 | lcore_conf[core].n_rx_queue++; |
| 35 | } |
| 36 | |
| 37 | uint8_t |
| 38 | ethdev_rx_num_rx_queues_get(uint16_t port) |