Skip to content

Commit f22d981

Browse files
ilanpeer2jmberg-intel
authored andcommitted
mac80211: Fix the size used for building probe request
Instead of using the hard-coded value of '100' use the correct scan IEs length as calculated during HW registration to mac80211. Signed-off-by: Ilan Peer <ilan.peer@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com> Link: https://lore.kernel.org/r/iwlwifi.20211129152938.0a82d6891719.I8ded1f2e0bccb9e71222c945666bcd86537f2e35@changeid Signed-off-by: Johannes Berg <johannes.berg@intel.com>
1 parent 511ab0c commit f22d981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/mac80211/util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2068,7 +2068,7 @@ struct sk_buff *ieee80211_build_probe_req(struct ieee80211_sub_if_data *sdata,
20682068
chandef.chan = chan;
20692069

20702070
skb = ieee80211_probereq_get(&local->hw, src, ssid, ssid_len,
2071-
100 + ie_len);
2071+
local->scan_ies_len + ie_len);
20722072
if (!skb)
20732073
return NULL;
20742074

0 commit comments

Comments
 (0)