MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ethdev_rx_node_process

Function ethdev_rx_node_process

dpdk/lib/node/ethdev_rx.c:40–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40static __rte_always_inline uint16_t
41ethdev_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
54static inline uint32_t
55l3_ptype(uint16_t etype, uint32_t ptype)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected