From: Sam Leffler <sleffler@xxxxxxxxxxxx> Add NL80211_SCAN_FLAG_LOW_PRIORITY flag support. It tells drivers that this is a low priority scan request, so that they can take necessary action. Signed-off-by: Sam Leffler <sleffler@xxxxxxxxxxxx> Tested-by: Amitkumar Karwar <akarwar@xxxxxxxxxxx> Signed-off-by: Amitkumar Karwar <akarwar@xxxxxxxxxxx> Signed-off-by: Bing Zhao <bzhao@xxxxxxxxxxx> --- include/linux/nl80211.h | 3 +++ include/net/cfg80211.h | 3 +++ 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/include/linux/nl80211.h b/include/linux/nl80211.h index 109f75d..e512baf 100644 --- a/include/linux/nl80211.h +++ b/include/linux/nl80211.h @@ -3079,8 +3079,11 @@ enum nl80211_connect_failed_reason { * Scan request control flags are used to control the handling * of NL80211_CMD_TRIGGER_SCAN and NL80211_CMD_START_SCHED_SCAN * requests. + * + * @NL80211_SCAN_FLAG_LOW_PRIORITY: scan request has low priority */ enum nl80211_scan_flags { + NL80211_SCAN_FLAG_LOW_PRIORITY = 1<<0, }; #endif /* __LINUX_NL80211_H */ diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 2c0c14a..ed659db 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -993,8 +993,11 @@ struct cfg80211_ssid { /** * enum cfg80211_scan_flags - scan request control flags + * + * @CFG80211_SCAN_FLAG_LOW_PRIORITY: scan request has low priority */ enum cfg80211_scan_flags { + CFG80211_SCAN_FLAG_LOW_PRIORITY = NL80211_SCAN_FLAG_LOW_PRIORITY, }; /** -- 1.7.0.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