svn commit: r227571 - releng/9.0/sys/dev/iwn

Bernhard Schmidt bschmidt at FreeBSD.org
Wed Nov 16 17:41:32 UTC 2011


Author: bschmidt
Date: Wed Nov 16 17:41:31 2011
New Revision: 227571
URL: http://svn.freebsd.org/changeset/base/227571

Log:
  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)

Modified:
  releng/9.0/sys/dev/iwn/if_iwn.c
Directory Properties:
  releng/9.0/sys/   (props changed)

Modified: releng/9.0/sys/dev/iwn/if_iwn.c
==============================================================================
--- releng/9.0/sys/dev/iwn/if_iwn.c	Wed Nov 16 17:39:59 2011	(r227570)
+++ releng/9.0/sys/dev/iwn/if_iwn.c	Wed Nov 16 17:41:31 2011	(r227571)
@@ -5641,6 +5641,7 @@ iwn_ampdu_tx_stop(struct ieee80211_node 
 	sc->qid2tap[qid] = NULL;
 	free(tap->txa_private, M_DEVBUF);
 	tap->txa_private = NULL;
+	sc->sc_addba_stop(ni, tap);
 }
 
 static void


More information about the svn-src-all mailing list