for the DMG (60GHz) networks, there is new scan parameter added in the 802.11 spec - DiscoveryMode. This parameter defines whether station performing active scan shall generate special form of DMG beacons. In particular, this flag used in the P2P discovery. Introduce flag to support this feature. Signed-off-by: Vladimir Kondratiev <qca_vkondrat@xxxxxxxxxxxxxxxx> --- include/uapi/linux/nl80211.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h index fde2c02..469ed2b 100644 --- a/include/uapi/linux/nl80211.h +++ b/include/uapi/linux/nl80211.h @@ -3808,11 +3808,18 @@ enum nl80211_connect_failed_reason { * dangerous because will destroy stations performance as a lot of frames * will be lost while scanning off-channel, therefore it must be used only * when really needed + * @NL80211_SCAN_FLAG_DISCOVERY_MODE: scan to use discovery mode, as in + * 802.11 spec for DMG (60GHz) networks in clause: + * 10.1.3.4 DMG Beacon generation before network initialization + * If set, station should transmit special form of DMG beacons when + * performing active scan. In 60GHz networks, this feature used + * in the P2P discovery procedure. */ enum nl80211_scan_flags { NL80211_SCAN_FLAG_LOW_PRIORITY = 1<<0, NL80211_SCAN_FLAG_FLUSH = 1<<1, NL80211_SCAN_FLAG_AP = 1<<2, + NL80211_SCAN_FLAG_DISCOVERY_MODE = 1<<3, }; /** -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html