| 32 | #define RTE_ETH_DEV_TO_VDEV(eth_dev) RTE_DEV_TO_VDEV((eth_dev)->device) |
| 33 | |
| 34 | static inline const char * |
| 35 | rte_vdev_device_name(const struct rte_vdev_device *dev) |
| 36 | { |
| 37 | if (dev && dev->device.name) |
| 38 | return dev->device.name; |
| 39 | return NULL; |
| 40 | } |
| 41 | |
| 42 | static inline const char * |
| 43 | rte_vdev_device_args(const struct rte_vdev_device *dev) |
no outgoing calls
no test coverage detected