Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 440c1c87 authored by Felix Fietkau's avatar Felix Fietkau Committed by John W. Linville
Browse files

ath9k: do not link bf_next across multiple A-MPDUs



This might trip up tx completion processing, although the condition that
triggers this should not (yet) occur in practice.

Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 86c7d8d4
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1951,7 +1951,9 @@ static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
			if (bf_is_ampdu_not_probing(bf))
				txq->axq_ampdu_depth++;

			bf = bf->bf_lastbf->bf_next;
			bf_last = bf->bf_lastbf;
			bf = bf_last->bf_next;
			bf_last->bf_next = NULL;
		}
	}
}