Searched refs:rx_drops (Results 1 – 2 of 2) sorted by relevance
499 EVCNT_INIT(st, rx_drops); in ena_alloc_counters_hwstats()502 CTASSERT(offsetof(struct ena_hw_stats, rx_drops) in ena_alloc_counters_hwstats()503 + sizeof(st->rx_drops) == sizeof(*st)); in ena_alloc_counters_hwstats()2327 return (counter_u64_fetch(stats->rx_drops));3361 uint64_t rx_drops, old; in ena_keep_alive_wd() local3365 rx_drops = ((uint64_t)desc->rx_drops_high << 32) | desc->rx_drops_low; in ena_keep_alive_wd()3366 old = adapter->hw_stats.rx_drops.ev_count; in ena_keep_alive_wd()3367 if (rx_drops > old) { in ena_keep_alive_wd()3368 counter_u64_add(adapter->hw_stats.rx_drops, rx_drops - old); in ena_keep_alive_wd()3369 if_statadd(adapter->ifp, if_iqdrops, rx_drops - old); in ena_keep_alive_wd()
344 struct evcnt rx_drops; member