MCPcopy Create free account
hub / github.com/F-Stack/f-stack / common_ring_sc_dequeue

Function common_ring_sc_dequeue

dpdk/drivers/mempool/ring/rte_mempool_ring.c:51–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51static int
52common_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
58static int
59rts_ring_mc_dequeue(struct rte_mempool *mp, void **obj_table, unsigned int n)

Callers

nothing calls this directly

Calls 1

rte_ring_sc_dequeue_bulkFunction · 0.85

Tested by

no test coverage detected