| 49 | } |
| 50 | |
| 51 | static int |
| 52 | common_ring_sc_dequeue(struct rte_mempool *mp, void **obj_table, unsigned n) |
| 53 | { |
| 54 | return rte_ring_sc_dequeue_bulk(mp->pool_data, |
| 55 | obj_table, n, NULL) == 0 ? -ENOBUFS : 0; |
| 56 | } |
| 57 | |
| 58 | static int |
| 59 | rts_ring_mc_dequeue(struct rte_mempool *mp, void **obj_table, unsigned int n) |
nothing calls this directly
no test coverage detected