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

Function rte_event_ring_create

dpdk/lib/eventdev/rte_event_ring.c:25–34  ·  view source on GitHub ↗

create the ring */

Source from the content-addressed store, hash-verified

23
24/* create the ring */
25struct rte_event_ring *
26rte_event_ring_create(const char *name, unsigned int count, int socket_id,
27 unsigned int flags)
28{
29 rte_eventdev_trace_ring_create(name, count, socket_id, flags);
30
31 return (struct rte_event_ring *)rte_ring_create_elem(name,
32 sizeof(struct rte_event),
33 count, socket_id, flags);
34}
35
36
37struct rte_event_ring *

Callers 7

sw_port_setupFunction · 0.85
dsw_port_setupFunction · 0.85
test_create_count_oddFunction · 0.85
test_event_ringFunction · 0.85

Calls 1

rte_ring_create_elemFunction · 0.85