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

Function pipeline_msg_send

dpdk/examples/ip_pipeline/thread.c:2214–2223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2212}
2213
2214static inline void
2215pipeline_msg_send(struct rte_ring *msgq_rsp,
2216 struct pipeline_msg_rsp *rsp)
2217{
2218 int status;
2219
2220 do {
2221 status = rte_ring_sp_enqueue(msgq_rsp, rsp);
2222 } while (status == -ENOBUFS);
2223}
2224
2225static struct pipeline_msg_rsp *
2226pipeline_msg_handle_port_in_stats_read(struct pipeline_data *p,

Callers 1

pipeline_msg_handleFunction · 0.85

Calls 1

rte_ring_sp_enqueueFunction · 0.85

Tested by

no test coverage detected