svn commit: r312017 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Fri Jan 13 07:24:59 UTC 2017


Author: adrian
Date: Fri Jan 13 07:24:58 2017
New Revision: 312017
URL: https://svnweb.freebsd.org/changeset/base/312017

Log:
  [net80211] add a macro to check this configuration option.

Modified:
  head/sys/net80211/ieee80211_var.h

Modified: head/sys/net80211/ieee80211_var.h
==============================================================================
--- head/sys/net80211/ieee80211_var.h	Fri Jan 13 07:08:14 2017	(r312016)
+++ head/sys/net80211/ieee80211_var.h	Fri Jan 13 07:24:58 2017	(r312017)
@@ -95,6 +95,9 @@
  */
 #define	IEEE80211_CONF_VHT(ic)		((ic)->ic_vhtcaps != 0)
 
+#define	IEEE80211_CONF_SEQNO_OFFLOAD(ic)	\
+	    ((ic)->ic_flags_ext & IEEE80211_FEXT_SEQNO_OFFLOAD)
+
 /*
  * 802.11 control state is split into a common portion that maps
  * 1-1 to a physical device and one or more "Virtual AP's" (VAP)


More information about the svn-src-head mailing list