18rte_graph_walk_rtc(
struct rte_graph *graph)
22 uint32_t head = graph->head;
23 struct rte_node *node;
40 while (
likely(head != graph->tail)) {
41 node = (
struct rte_node *)
RTE_PTR_ADD(graph, cir_start[(int32_t)head++]);
42 __rte_node_process(graph, node);
43 head =
likely((int32_t)head > 0) ? head & mask : head;
#define RTE_PTR_ADD(ptr, x)