Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3965ac00 authored by Rajkumar Manoharan's avatar Rajkumar Manoharan Committed by John W. Linville
Browse files

wireless: Fix rate mask for scan request



The scan request received from cfg80211_connect do not
have proper rate mast. So the probe request sent on each
channel do not have proper the supported rates ie.

Cc: stable@kernel.org
Reviewed-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarRajkumar Manoharan <rmanohar@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent daabead1
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -118,6 +118,8 @@ static int cfg80211_conn_scan(struct wireless_dev *wdev)
			     i++, j++)
			     i++, j++)
				request->channels[i] =
				request->channels[i] =
					&wdev->wiphy->bands[band]->channels[j];
					&wdev->wiphy->bands[band]->channels[j];
			request->rates[band] =
				(1 << wdev->wiphy->bands[band]->n_bitrates) - 1;
		}
		}
	}
	}
	request->n_channels = n_channels;
	request->n_channels = n_channels;