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

Function thread_msg_send

dpdk/drivers/net/softnic/rte_eth_softnic_thread.c:437–446  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

435}
436
437static inline void
438thread_msg_send(struct rte_ring *msgq_rsp,
439 struct thread_msg_rsp *rsp)
440{
441 int status;
442
443 do {
444 status = rte_ring_sp_enqueue(msgq_rsp, rsp);
445 } while (status == -ENOBUFS);
446}
447
448static struct thread_msg_rsp *
449thread_msg_handle_pipeline_enable(struct softnic_thread_data *t,

Callers 1

thread_msg_handleFunction · 0.70

Calls 1

rte_ring_sp_enqueueFunction · 0.85

Tested by

no test coverage detected