| 671 | } |
| 672 | |
| 673 | static inline void |
| 674 | graph_fini(void) |
| 675 | { |
| 676 | const struct rte_memzone *mz = rte_memzone_lookup(TEST_GRAPH_PERF_MZ); |
| 677 | struct test_graph_perf *graph_data; |
| 678 | |
| 679 | if (mz == NULL) |
| 680 | return; |
| 681 | graph_data = mz->addr; |
| 682 | |
| 683 | rte_graph_destroy(graph_data->graph_id); |
| 684 | free(graph_data->node_data); |
| 685 | rte_memzone_free(rte_memzone_lookup(TEST_GRAPH_PERF_MZ)); |
| 686 | } |
| 687 | |
| 688 | static int |
| 689 | measure_perf(void) |
nothing calls this directly
no test coverage detected