| 452 | } |
| 453 | |
| 454 | static inline void |
| 455 | disable_pdump(struct pdump_tuples *pt) |
| 456 | { |
| 457 | if (pt->dump_by_type == DEVICE_ID) |
| 458 | rte_pdump_disable_by_deviceid(pt->device_id, pt->queue, |
| 459 | pt->dir); |
| 460 | else if (pt->dump_by_type == PORT_ID) |
| 461 | rte_pdump_disable(pt->port, pt->queue, pt->dir); |
| 462 | } |
| 463 | |
| 464 | static inline void |
| 465 | pdump_rxtx(struct rte_ring *ring, uint16_t vdev_id, struct pdump_stats *stats) |
no test coverage detected