Lines Matching refs:msgq_rsp
38 struct rte_ring *msgq_rsp; member
60 struct rte_ring *msgq_rsp; member
86 if (t->msgq_rsp) in thread_free()
87 rte_ring_free(t->msgq_rsp); in thread_free()
98 struct rte_ring *msgq_req, *msgq_rsp; in thread_init() local
118 msgq_rsp = rte_ring_create(name, in thread_init()
123 if (msgq_rsp == NULL) { in thread_init()
130 t->msgq_rsp = msgq_rsp; in thread_init()
136 t_data->msgq_rsp = msgq_rsp; in thread_init()
207 struct rte_ring *msgq_rsp = t->msgq_rsp; in thread_msg_send_recv() local
218 status = rte_ring_sc_dequeue(msgq_rsp, (void **) &rsp); in thread_msg_send_recv()
399 thread_msg_send(struct rte_ring *msgq_rsp, in thread_msg_send() argument
405 status = rte_ring_sp_enqueue(msgq_rsp, rsp); in thread_msg_send()
498 thread_msg_send(t->msgq_rsp, rsp); in thread_msg_handle()