aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/igc/if_igc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/igc/if_igc.c b/sys/dev/igc/if_igc.c
index c4f5e82ff8c8..d964fbe4cf91 100644
--- a/sys/dev/igc/if_igc.c
+++ b/sys/dev/igc/if_igc.c
@@ -866,7 +866,7 @@ igc_neweitr(struct igc_adapter *sc, struct igc_rx_queue *que,
nextlatency = rxr->rx_nextlatency;
/* Use half default (4K) ITR if sub-gig */
- if (sc->link_speed != 1000) {
+ if (sc->link_speed < 1000) {
neweitr = IGC_INTS_4K;
goto igc_set_next_eitr;
}