svn commit: r361819 - head/sys/net80211
Adrian Chadd
adrian at FreeBSD.org
Fri Jun 5 04:04:48 UTC 2020
Author: adrian
Date: Fri Jun 5 04:04:47 2020
New Revision: 361819
URL: https://svnweb.freebsd.org/changeset/base/361819
Log:
[net80211] Add field definition for A-MSDU inside A-MPDU.
Now that I have A-MSDU and A-MPDU coexisting together, we need to actually
announce if (a) it's permitted and (b) figure out if we should use it
when transmitting.
This just adds the field; it doesn't yet include it in ADDBA exchanges.
Modified:
head/sys/net80211/ieee80211.h
Modified: head/sys/net80211/ieee80211.h
==============================================================================
--- head/sys/net80211/ieee80211.h Fri Jun 5 02:56:42 2020 (r361818)
+++ head/sys/net80211/ieee80211.h Fri Jun 5 04:04:47 2020 (r361819)
@@ -430,6 +430,8 @@ struct ieee80211_action_ht_mimopowersave {
#define IEEE80211_BAPS_TID_S 2
#define IEEE80211_BAPS_POLICY 0x0002 /* block ack policy */
#define IEEE80211_BAPS_POLICY_S 1
+#define IEEE80211_BAPS_AMSDU 0x0001 /* A-MSDU permitted */
+#define IEEE80211_BAPS_AMSDU_S 0
#define IEEE80211_BAPS_POLICY_DELAYED (0<<IEEE80211_BAPS_POLICY_S)
#define IEEE80211_BAPS_POLICY_IMMEDIATE (1<<IEEE80211_BAPS_POLICY_S)
More information about the svn-src-all
mailing list