| 411 | } |
| 412 | |
| 413 | static int enicpmd_dev_stats_get(struct rte_eth_dev *eth_dev, |
| 414 | struct rte_eth_stats *stats) |
| 415 | { |
| 416 | struct enic *enic = pmd_priv(eth_dev); |
| 417 | |
| 418 | ENICPMD_FUNC_TRACE(); |
| 419 | return enic_dev_stats_get(enic, stats); |
| 420 | } |
| 421 | |
| 422 | static int enicpmd_dev_stats_reset(struct rte_eth_dev *eth_dev) |
| 423 | { |
nothing calls this directly
no test coverage detected