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

Function graph_nodes_mem_destroy

dpdk/lib/graph/graph_populate.c:221–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219}
220
221static void
222graph_nodes_mem_destroy(struct rte_graph *graph)
223{
224 rte_node_t count;
225 rte_graph_off_t off;
226 struct rte_node *node;
227
228 if (graph == NULL)
229 return;
230
231 rte_graph_foreach_node(count, off, graph, node)
232 rte_free(node->objs);
233}
234
235int
236graph_fp_mem_destroy(struct graph *graph)

Callers 1

graph_fp_mem_destroyFunction · 0.85

Calls 1

rte_freeFunction · 0.85

Tested by

no test coverage detected