From 2576f27e04259c4434733070ed12d21dcd767d36 Mon Sep 17 00:00:00 2001 From: Vamsi Krishna Date: Mon, 16 Nov 2020 12:31:34 +0530 Subject: [PATCH] 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 --- src/common/ieee802_11_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }, -- 2.47.2