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

Function graph_node_has_loop_edge

dpdk/lib/graph/graph_ops.c:34–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34int
35graph_node_has_loop_edge(struct graph *graph)
36{
37 struct graph_node *graph_node;
38
39 STAILQ_FOREACH(graph_node, &graph->node_list, next)
40 if (node_has_loop_edge(graph_node->node))
41 return 1;
42
43 return 0;
44}
45
46rte_node_t
47graph_src_nodes_count(struct graph *graph)

Callers 1

rte_graph_createFunction · 0.85

Calls 1

node_has_loop_edgeFunction · 0.85

Tested by

no test coverage detected