mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
cfg80211: ignore supported rates for nonexistant bands on scan
Fixes wpa_supplicant p2p_find on 5GHz-only devices Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
12b5f34d2d
commit
1b09cd82d8
1 changed files with 4 additions and 0 deletions
|
@ -5349,6 +5349,10 @@ static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
|
|||
err = -EINVAL;
|
||||
goto out_free;
|
||||
}
|
||||
|
||||
if (!wiphy->bands[band])
|
||||
continue;
|
||||
|
||||
err = ieee80211_get_ratemask(wiphy->bands[band],
|
||||
nla_data(attr),
|
||||
nla_len(attr),
|
||||
|
|
Loading…
Reference in a new issue