| 18 | } |
| 19 | |
| 20 | static int |
| 21 | common_ring_sp_enqueue(struct rte_mempool *mp, void * const *obj_table, |
| 22 | unsigned n) |
| 23 | { |
| 24 | return rte_ring_sp_enqueue_bulk(mp->pool_data, |
| 25 | obj_table, n, NULL) == 0 ? -ENOBUFS : 0; |
| 26 | } |
| 27 | |
| 28 | static int |
| 29 | rts_ring_mp_enqueue(struct rte_mempool *mp, void * const *obj_table, |
nothing calls this directly
no test coverage detected