PERFORCE change 135067 for review

Sam Leffler sam at FreeBSD.org
Fri Feb 8 15:13:43 PST 2008


http://perforce.freebsd.org/chv.cgi?CH=135067

Change 135067 by sam at sam_ebb on 2008/02/08 23:13:00

	add M_EAPOL for classifier to mark EAPOL frames

Affected files ...

.. //depot/projects/vap/sys/net80211/ieee80211_freebsd.h#16 edit

Differences ...

==== //depot/projects/vap/sys/net80211/ieee80211_freebsd.h#16 (text+ko) ====

@@ -228,10 +228,12 @@
 #define	M_LINK0		M_PROTO1		/* WEP requested */
 #define	M_PWR_SAV	M_PROTO4		/* bypass PS handling */
 #define	M_MORE_DATA	M_PROTO5		/* more data frames to follow */
-#define	M_FF		0x20000			/* fast frame */
-#define	M_TXCB		0x40000			/* do tx complete callback */
-#define	M_WDS		0x80000			/* WDS frame */
-#define	M_80211_TX	(0x60000|M_PROTO1|M_WME_AC_MASK|M_PROTO4|M_PROTO5|M_WDS)
+#define	M_FF		0x020000		/* fast frame */
+#define	M_TXCB		0x040000		/* do tx complete callback */
+#define	M_WDS		0x080000		/* WDS frame */
+#define	M_EAPOL		0x100000		/* PAE/EAPOL frame */
+#define	M_80211_TX \
+	(0x60000|M_PROTO1|M_WME_AC_MASK|M_PROTO4|M_PROTO5|M_WDS|M_EAPOL)
 
 /* rx path usage */
 #define	M_AMPDU		M_PROTO1		/* A-MPDU processing done */


More information about the p4-projects mailing list