| 61 | } |
| 62 | |
| 63 | static __rte_always_inline unsigned int |
| 64 | rob_ring_free_count(const struct rob_ring *r) |
| 65 | { |
| 66 | return r->size - rob_ring_count(r); |
| 67 | } |
| 68 | |
| 69 | static __rte_always_inline unsigned int |
| 70 | rob_ring_enqueue(struct rob_ring *r, void *re) |
no test coverage detected