Lines Matching refs:msgq_rsp
47 struct rte_ring *msgq_rsp; member
69 struct rte_ring *msgq_rsp; member
94 rte_ring_free(t->msgq_rsp); in thread_free()
105 struct rte_ring *msgq_req, *msgq_rsp; in thread_init() local
125 msgq_rsp = rte_ring_create(name, in thread_init()
130 if (msgq_rsp == NULL) { in thread_init()
137 t->msgq_rsp = msgq_rsp; in thread_init()
143 t_data->msgq_rsp = msgq_rsp; in thread_init()
214 struct rte_ring *msgq_rsp = t->msgq_rsp; in thread_msg_send_recv() local
225 status = rte_ring_sc_dequeue(msgq_rsp, (void **) &rsp); in thread_msg_send_recv()
406 thread_msg_send(struct rte_ring *msgq_rsp, in thread_msg_send() argument
412 status = rte_ring_sp_enqueue(msgq_rsp, rsp); in thread_msg_send()
505 thread_msg_send(t->msgq_rsp, rsp); in thread_msg_handle()