summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstsp <stsp@openbsd.org>2020-07-20 08:04:41 +0000
committerstsp <stsp@openbsd.org>2020-07-20 08:04:41 +0000
commitd32efed957a1031f56c5c1963cbd391797999373 (patch)
treedf5302ac1844ed1aaf35e91331e5f7ca2c58ce32
parentMake iwn_ampdu_tx_done() record an ACK for the frame for which the hardware (diff)
downloadwireguard-openbsd-d32efed957a1031f56c5c1963cbd391797999373.tar.xz
wireguard-openbsd-d32efed957a1031f56c5c1963cbd391797999373.zip
update a comment in iwn_ampdu_tx_done following previous SSN -> SEQ change
-rw-r--r--sys/dev/pci/if_iwn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwn.c b/sys/dev/pci/if_iwn.c
index 6179f066497..87036afc6b0 100644
--- a/sys/dev/pci/if_iwn.c
+++ b/sys/dev/pci/if_iwn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwn.c,v 1.235 2020/07/20 08:00:38 stsp Exp $ */
+/* $OpenBSD: if_iwn.c,v 1.236 2020/07/20 08:04:41 stsp Exp $ */
/*-
* Copyright (c) 2007-2010 Damien Bergamini <damien.bergamini@free.fr>
@@ -2678,7 +2678,7 @@ iwn_ampdu_tx_done(struct iwn_softc *sc, struct iwn_tx_ring *txq,
ieee80211_tx_compressed_bar(ic, ni, tid, ssn);
else if (!SEQ_LT(seq, ba->ba_winstart)) {
/*
- * Move window forward if SSN lies beyond end of window,
+ * Move window forward if SEQ lies beyond end of window,
* otherwise we can't record the ACK for this frame.
* Non-acked frames which left holes in the bitmap near
* the beginning of the window must be discarded.