| 824 | } |
| 825 | |
| 826 | void |
| 827 | pipeline_mempool_destroy(struct evt_test *test, struct evt_options *opt) |
| 828 | { |
| 829 | struct test_pipeline *t = evt_test_priv(test); |
| 830 | int i; |
| 831 | |
| 832 | RTE_SET_USED(opt); |
| 833 | if (opt->per_port_pool) { |
| 834 | RTE_ETH_FOREACH_DEV(i) |
| 835 | rte_mempool_free(t->pool[i]); |
| 836 | } else { |
| 837 | rte_mempool_free(t->pool[0]); |
| 838 | } |
| 839 | } |
| 840 | |
| 841 | int |
| 842 | pipeline_test_setup(struct evt_test *test, struct evt_options *opt) |
nothing calls this directly
no test coverage detected