| 248 | } |
| 249 | |
| 250 | static void |
| 251 | graph_node_fini(struct graph *graph) |
| 252 | { |
| 253 | struct graph_node *graph_node; |
| 254 | |
| 255 | STAILQ_FOREACH(graph_node, &graph->node_list, next) |
| 256 | if (graph_node->node->fini) |
| 257 | graph_node->node->fini( |
| 258 | graph->graph, |
| 259 | graph_node_name_to_ptr(graph->graph, |
| 260 | graph_node->node->name)); |
| 261 | } |
| 262 | |
| 263 | static struct rte_graph * |
| 264 | graph_mem_fixup_node_ctx(struct rte_graph *graph) |
no test coverage detected