Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Feb 2008 23:13:42 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 135067 for review
Message-ID:  <200802082313.m18NDg7b018848@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=135067

Change 135067 by sam@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 */



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