From: Vamsi Krishna Date: Mon, 16 Nov 2020 07:01:34 +0000 (+0530) Subject: P2P: Disable P2P in the 6 GHz band for now X-Git-Tag: hostap_2_10~768 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2576f27e04259c4434733070ed12d21dcd767d36;p=thirdparty%2Fhostap.git P2P: Disable P2P in the 6 GHz band for now P2P usage in the 6 GHz band is not standardized yet by WFA. Disable P2P operations in the 6 GHz band to avoid potential interop issues with existing P2P devices in production. P2P operations in the 6 GHz band can be reenabled later after defining standard ways to address potential interop issues with existing P2P devices. Signed-off-by: Jouni Malinen --- diff --git a/src/common/ieee802_11_common.c b/src/common/ieee802_11_common.c index 9b3782e26..8bdeeb5a4 100644 --- a/src/common/ieee802_11_common.c +++ b/src/common/ieee802_11_common.c @@ -1885,7 +1885,7 @@ const struct oper_class_map global_op_class[] = { */ { HOSTAPD_MODE_IEEE80211A, 128, 36, 161, 4, BW80, P2P_SUPP }, { HOSTAPD_MODE_IEEE80211A, 129, 50, 114, 16, BW160, P2P_SUPP }, - { HOSTAPD_MODE_IEEE80211A, 131, 1, 233, 4, BW20, P2P_SUPP }, + { HOSTAPD_MODE_IEEE80211A, 131, 1, 233, 4, BW20, NO_P2P_SUPP }, { HOSTAPD_MODE_IEEE80211A, 132, 1, 233, 8, BW40, NO_P2P_SUPP }, { HOSTAPD_MODE_IEEE80211A, 133, 1, 233, 16, BW80, NO_P2P_SUPP }, { HOSTAPD_MODE_IEEE80211A, 134, 1, 233, 32, BW160, NO_P2P_SUPP },