| 42 | } |
| 43 | |
| 44 | static int |
| 45 | common_ring_mc_dequeue(struct rte_mempool *mp, void **obj_table, unsigned n) |
| 46 | { |
| 47 | return rte_ring_mc_dequeue_bulk(mp->pool_data, |
| 48 | obj_table, n, NULL) == 0 ? -ENOBUFS : 0; |
| 49 | } |
| 50 | |
| 51 | static int |
| 52 | common_ring_sc_dequeue(struct rte_mempool *mp, void **obj_table, unsigned n) |
nothing calls this directly
no test coverage detected