Lines Matching refs:msgq_req
46 struct rte_ring *msgq_req; member
68 struct rte_ring *msgq_req; member
92 rte_ring_free(t->msgq_req); in thread_free()
105 struct rte_ring *msgq_req, *msgq_rsp; in thread_init() local
113 msgq_req = rte_ring_create(name, in thread_init()
118 if (msgq_req == NULL) { in thread_init()
136 t->msgq_req = msgq_req; in thread_init()
142 t_data->msgq_req = msgq_req; in thread_init()
213 struct rte_ring *msgq_req = t->msgq_req; in thread_msg_send_recv() local
220 status = rte_ring_sp_enqueue(msgq_req, req); in thread_msg_send_recv()
393 thread_msg_recv(struct rte_ring *msgq_req) in thread_msg_recv() argument
397 int status = rte_ring_sc_dequeue(msgq_req, (void **) &req); in thread_msg_recv()
487 req = thread_msg_recv(t->msgq_req); in thread_msg_handle()