| 38 | } |
| 39 | |
| 40 | static __rte_always_inline uint16_t |
| 41 | ethdev_rx_node_process(struct rte_graph *graph, struct rte_node *node, |
| 42 | void **objs, uint16_t cnt) |
| 43 | { |
| 44 | ethdev_rx_node_ctx_t *ctx = (ethdev_rx_node_ctx_t *)node->ctx; |
| 45 | uint16_t n_pkts = 0; |
| 46 | |
| 47 | RTE_SET_USED(objs); |
| 48 | RTE_SET_USED(cnt); |
| 49 | |
| 50 | n_pkts = ethdev_rx_node_process_inline(graph, node, ctx); |
| 51 | return n_pkts; |
| 52 | } |
| 53 | |
| 54 | static inline uint32_t |
| 55 | l3_ptype(uint16_t etype, uint32_t ptype) |
nothing calls this directly
no test coverage detected