summaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorAssaf Krauss2014-09-03 14:25:01 +0200
committerJohannes Berg2014-09-05 13:52:08 +0200
commitbab5ab7d2a5466406e8003d038cc7ce6b2d5d804 (patch)
tree4efa1ae46d6dce226fd8f389720c10b4a198634c /include/net/cfg80211.h
parentnl80211: Allow declaring RRM-related features (diff)
downloadkernel-qcow2-linux-bab5ab7d2a5466406e8003d038cc7ce6b2d5d804.tar.gz
kernel-qcow2-linux-bab5ab7d2a5466406e8003d038cc7ce6b2d5d804.tar.xz
kernel-qcow2-linux-bab5ab7d2a5466406e8003d038cc7ce6b2d5d804.zip
nl80211: Add flag attribute for RRM connections
Add a flag attribute to use in associations, for tagging the target connection as supporting RRM. It is the responsibility of upper layers to set this flag only if both the underlying device, and the target network indeed support RRM. To be used in ASSOCIATE and CONNECT commands. Signed-off-by: Assaf Krauss <assaf.krauss@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 6be68bb31918..a887eeb5b31e 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -1608,10 +1608,12 @@ struct cfg80211_auth_request {
*
* @ASSOC_REQ_DISABLE_HT: Disable HT (802.11n)
* @ASSOC_REQ_DISABLE_VHT: Disable VHT
+ * @ASSOC_REQ_USE_RRM: Declare RRM capability in this association
*/
enum cfg80211_assoc_req_flags {
ASSOC_REQ_DISABLE_HT = BIT(0),
ASSOC_REQ_DISABLE_VHT = BIT(1),
+ ASSOC_REQ_USE_RRM = BIT(2),
};
/**