| 2212 | } |
| 2213 | |
| 2214 | static inline void |
| 2215 | pipeline_msg_send(struct rte_ring *msgq_rsp, |
| 2216 | struct pipeline_msg_rsp *rsp) |
| 2217 | { |
| 2218 | int status; |
| 2219 | |
| 2220 | do { |
| 2221 | status = rte_ring_sp_enqueue(msgq_rsp, rsp); |
| 2222 | } while (status == -ENOBUFS); |
| 2223 | } |
| 2224 | |
| 2225 | static struct pipeline_msg_rsp * |
| 2226 | pipeline_msg_handle_port_in_stats_read(struct pipeline_data *p, |
no test coverage detected