| 68 | } |
| 69 | |
| 70 | static void |
| 71 | stack_free(struct rte_mempool *mp) |
| 72 | { |
| 73 | struct rte_stack *s = mp->pool_data; |
| 74 | |
| 75 | rte_stack_free(s); |
| 76 | } |
| 77 | |
| 78 | static struct rte_mempool_ops ops_stack = { |
| 79 | .name = "stack", |
nothing calls this directly
no test coverage detected