| 60 | } |
| 61 | |
| 62 | static unsigned |
| 63 | stack_get_count(const struct rte_mempool *mp) |
| 64 | { |
| 65 | struct rte_stack *s = mp->pool_data; |
| 66 | |
| 67 | return rte_stack_count(s); |
| 68 | } |
| 69 | |
| 70 | static void |
| 71 | stack_free(struct rte_mempool *mp) |
nothing calls this directly
no test coverage detected