| 108 | } |
| 109 | |
| 110 | static void enic_init_soft_stats(struct enic *enic) |
| 111 | { |
| 112 | struct enic_soft_stats *soft_stats = &enic->soft_stats; |
| 113 | rte_atomic64_init(&soft_stats->rx_nombuf); |
| 114 | rte_atomic64_init(&soft_stats->rx_packet_errors); |
| 115 | rte_atomic64_init(&soft_stats->tx_oversized); |
| 116 | enic_clear_soft_stats(enic); |
| 117 | } |
| 118 | |
| 119 | int enic_dev_stats_clear(struct enic *enic) |
| 120 | { |
no test coverage detected