| 435 | } |
| 436 | |
| 437 | static inline void |
| 438 | thread_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 | |
| 448 | static struct thread_msg_rsp * |
| 449 | thread_msg_handle_pipeline_enable(struct softnic_thread_data *t, |
no test coverage detected