| 219 | } |
| 220 | |
| 221 | static void |
| 222 | graph_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 | |
| 235 | int |
| 236 | graph_fp_mem_destroy(struct graph *graph) |
no test coverage detected