Make iwx(4) update an Rx BA session's last_rx timestamp when a frame
authorstsp <stsp@openbsd.org>
Mon, 22 Nov 2021 11:01:12 +0000 (11:01 +0000)
committerstsp <stsp@openbsd.org>
Mon, 22 Nov 2021 11:01:12 +0000 (11:01 +0000)
is received which matches the session.

Same change as just made in iwm(4).

sys/dev/pci/if_iwx.c

index b7072c1..d20e233 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_iwx.c,v 1.123 2021/11/22 10:54:36 stsp Exp $       */
+/*     $OpenBSD: if_iwx.c,v 1.124 2021/11/22 11:01:12 stsp Exp $       */
 
 /*
  * Copyright (c) 2014, 2016 genua gmbh <info@genua.de>
@@ -4202,6 +4202,9 @@ iwx_rx_reorder(struct iwx_softc *sc, struct mbuf *m, int chanidx,
        if (rxba == NULL || tid != rxba->tid || rxba->sta_id != IWX_STATION_ID)
                return 0;
 
+       if (rxba->timeout != 0)
+               getmicrouptime(&rxba->last_rx);
+
        /* Bypass A-MPDU re-ordering in net80211. */
        rxi->rxi_flags |= IEEE80211_RXI_AMPDU_DONE;