Get device status before timeout exit */
| 198 | |
| 199 | /* Get device status before timeout exit */ |
| 200 | static inline void |
| 201 | timeout_exit(uint8_t dev_id) |
| 202 | { |
| 203 | struct rte_bbdev_info info; |
| 204 | rte_bbdev_info_get(dev_id, &info); |
| 205 | printf("Device Status %s\n", rte_bbdev_device_status_str(info.drv.device_status)); |
| 206 | } |
| 207 | |
| 208 | static inline void |
| 209 | mbuf_reset(struct rte_mbuf *m) |
no test coverage detected