| 342 | } |
| 343 | |
| 344 | static __rte_always_inline void |
| 345 | sw_refill_pp_buf(struct sw_evdev *sw, struct sw_port *port) |
| 346 | { |
| 347 | RTE_SET_USED(sw); |
| 348 | struct rte_event_ring *worker = port->rx_worker_ring; |
| 349 | port->pp_buf_start = 0; |
| 350 | port->pp_buf_count = rte_event_ring_dequeue_burst(worker, port->pp_buf, |
| 351 | sw->sched_deq_burst_size, NULL); |
| 352 | } |
| 353 | |
| 354 | static __rte_always_inline uint32_t |
| 355 | __pull_port_lb(struct sw_evdev *sw, uint32_t port_id, int allow_reorder) |
no test coverage detected