Lines Matching refs:msgq_req
37 struct rte_ring *msgq_req; member
59 struct rte_ring *msgq_req; member
83 if (t->msgq_req) in thread_free()
84 rte_ring_free(t->msgq_req); in thread_free()
98 struct rte_ring *msgq_req, *msgq_rsp; in thread_init() local
106 msgq_req = rte_ring_create(name, in thread_init()
111 if (msgq_req == NULL) { in thread_init()
129 t->msgq_req = msgq_req; in thread_init()
135 t_data->msgq_req = msgq_req; in thread_init()
206 struct rte_ring *msgq_req = t->msgq_req; in thread_msg_send_recv() local
213 status = rte_ring_sp_enqueue(msgq_req, req); in thread_msg_send_recv()
386 thread_msg_recv(struct rte_ring *msgq_req) in thread_msg_recv() argument
390 int status = rte_ring_sc_dequeue(msgq_req, (void **) &req); in thread_msg_recv()
480 req = thread_msg_recv(t->msgq_req); in thread_msg_handle()