diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2020-10-09 08:53:17 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2020-10-09 08:53:17 +0000 |
commit | 882bb1a14a19a99198060593af6466cb630ab339 (patch) | |
tree | dac23aa18e63e391771790e8802732b8bcaa47cc /sys/net80211 | |
parent | a29c3a5e3d05695bf9092c4244ff661c1d5eccf0 (diff) |
Kill unused IEEE80211_RADIOTAP_HWQUEUE.
Its value is conflicting with an effort to standardize TX flags fields of
the radiotap header from Mathy Vanhoef.
This flag used to indicate the presence of a specific hardware queue used
by WME but is unchecked.
ok sthen@, kn@
Diffstat (limited to 'sys/net80211')
-rw-r--r-- | sys/net80211/ieee80211_radiotap.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/net80211/ieee80211_radiotap.h b/sys/net80211/ieee80211_radiotap.h index 198219c71d9..5be62abf361 100644 --- a/sys/net80211/ieee80211_radiotap.h +++ b/sys/net80211/ieee80211_radiotap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_radiotap.h,v 1.15 2019/02/19 08:12:30 stsp Exp $ */ +/* $OpenBSD: ieee80211_radiotap.h,v 1.16 2020/10/09 08:53:16 mpi Exp $ */ /* $FreeBSD: src/sys/net80211/ieee80211_radiotap.h,v 1.3 2004/04/05 22:13:21 sam Exp $ */ /* $NetBSD: ieee80211_radiotap.h,v 1.9 2004/06/06 04:13:28 dyoung Exp $ */ @@ -157,10 +157,6 @@ struct ieee80211_radiotap_header { * * FCS from frame in network byte order. * - * IEEE80211_RADIOTAP_HWQUEUE u_int8_t data - * - * A specific hardware queue (used by WME) - * * IEEE80211_RADIOTAP_RSSI 2x u_int8_t RSSI, max RSSI * * A relative Received Signal Strength Index @@ -181,7 +177,6 @@ enum ieee80211_radiotap_type { IEEE80211_RADIOTAP_DB_ANTSIGNAL = 12, IEEE80211_RADIOTAP_DB_ANTNOISE = 13, IEEE80211_RADIOTAP_FCS = 14, - IEEE80211_RADIOTAP_HWQUEUE = 15, IEEE80211_RADIOTAP_RSSI = 16, IEEE80211_RADIOTAP_EXT = 31 }; |