|
@@ -389,6 +389,7 @@ static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = {
|
|
|
[NL80211_ATTR_TDLS_PEER_CAPABILITY] = { .type = NLA_U32 },
|
|
|
[NL80211_ATTR_IFACE_SOCKET_OWNER] = { .type = NLA_FLAG },
|
|
|
[NL80211_ATTR_CSA_C_OFFSETS_TX] = { .type = NLA_BINARY },
|
|
|
+ [NL80211_ATTR_USE_RRM] = { .type = NLA_FLAG },
|
|
|
};
|
|
|
|
|
|
/* policy for the key attributes */
|
|
@@ -6584,6 +6585,14 @@ static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
|
|
|
sizeof(req.vht_capa));
|
|
|
}
|
|
|
|
|
|
+ if (nla_get_flag(info->attrs[NL80211_ATTR_USE_RRM])) {
|
|
|
+ if (!(rdev->wiphy.features &
|
|
|
+ NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) ||
|
|
|
+ !(rdev->wiphy.features & NL80211_FEATURE_QUIET))
|
|
|
+ return -EINVAL;
|
|
|
+ req.flags |= ASSOC_REQ_USE_RRM;
|
|
|
+ }
|
|
|
+
|
|
|
err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
|
|
|
if (!err) {
|
|
|
wdev_lock(dev->ieee80211_ptr);
|
|
@@ -7241,6 +7250,14 @@ static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
|
|
|
sizeof(connect.vht_capa));
|
|
|
}
|
|
|
|
|
|
+ if (nla_get_flag(info->attrs[NL80211_ATTR_USE_RRM])) {
|
|
|
+ if (!(rdev->wiphy.features &
|
|
|
+ NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) ||
|
|
|
+ !(rdev->wiphy.features & NL80211_FEATURE_QUIET))
|
|
|
+ return -EINVAL;
|
|
|
+ connect.flags |= ASSOC_REQ_USE_RRM;
|
|
|
+ }
|
|
|
+
|
|
|
wdev_lock(dev->ieee80211_ptr);
|
|
|
err = cfg80211_connect(rdev, dev, &connect, connkeys, NULL);
|
|
|
wdev_unlock(dev->ieee80211_ptr);
|