svn commit: r297768 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Sat Apr 9 21:57:36 UTC 2016


Author: adrian
Date: Sat Apr  9 21:57:34 2016
New Revision: 297768
URL: https://svnweb.freebsd.org/changeset/base/297768

Log:
  [net80211] add back in the ff/superg node init call that I accidentally
  deleted.
  
  It's mostly a no-op right now, so it shouldn't have changed behaviour.

Modified:
  head/sys/net80211/ieee80211_sta.c

Modified: head/sys/net80211/ieee80211_sta.c
==============================================================================
--- head/sys/net80211/ieee80211_sta.c	Sat Apr  9 21:55:58 2016	(r297767)
+++ head/sys/net80211/ieee80211_sta.c	Sat Apr  9 21:57:34 2016	(r297768)
@@ -1706,6 +1706,14 @@ sta_recv_mgmt(struct ieee80211_node *ni,
 		}
 
 		/*
+		 * Always initialise FF/superg state; we can use this
+		 * for doing A-MSDU encapsulation as well.
+		 */
+#ifdef	IEEE80211_SUPPORT_SUPERG
+		ieee80211_ff_node_init(ni);
+#endif
+
+		/*
 		 * Configure state now that we are associated.
 		 *
 		 * XXX may need different/additional driver callbacks?


More information about the svn-src-head mailing list