From 90f4fcd1ffce5a9b4ec433c23f394780a758e002 Mon Sep 17 00:00:00 2001 From: bschmidt Date: Wed, 16 Nov 2011 17:41:31 +0000 Subject: [PATCH] MFC r226679: Let net80211 also know about stopped BA sessions. This fixes some issues where the driver assumed that BA resources are still available due to net80211 saying so. PR: 161407, 159768 Tested by: cperciva, rene Approved by: re (kib) git-svn-id: svn://svn.freebsd.org/base/releng/9.0@227571 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- sys/dev/iwn/if_iwn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/iwn/if_iwn.c b/sys/dev/iwn/if_iwn.c index 0caf8a9c..8a02752f 100644 --- a/sys/dev/iwn/if_iwn.c +++ b/sys/dev/iwn/if_iwn.c @@ -5641,6 +5641,7 @@ iwn_ampdu_tx_stop(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap) sc->qid2tap[qid] = NULL; free(tap->txa_private, M_DEVBUF); tap->txa_private = NULL; + sc->sc_addba_stop(ni, tap); } static void -- 2.42.0