Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 5 Jun 2020 04:04:48 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r361819 - head/sys/net80211
Message-ID:  <202006050404.05544mSS056154@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006050404.05544mSS056154>