| 8 | #include "eventdev_trace.h" |
| 9 | |
| 10 | int |
| 11 | rte_event_ring_init(struct rte_event_ring *r, const char *name, |
| 12 | unsigned int count, unsigned int flags) |
| 13 | { |
| 14 | /* compilation-time checks */ |
| 15 | RTE_BUILD_BUG_ON((sizeof(struct rte_event_ring) & |
| 16 | RTE_CACHE_LINE_MASK) != 0); |
| 17 | |
| 18 | rte_eventdev_trace_ring_init(r, name, count, flags); |
| 19 | |
| 20 | /* init the ring structure */ |
| 21 | return rte_ring_init(&r->r, name, count, flags); |
| 22 | } |
| 23 | |
| 24 | /* create the ring */ |
| 25 | struct rte_event_ring * |
nothing calls this directly
no test coverage detected