From: Johannes Berg <johannes@sipsolutions.net>
To: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
Cc: linux-wireless@vger.kernel.org
Subject: Re: [RFC] wireless: Do not allow disabled channel in scan request
Date: Thu, 15 Sep 2011 14:05:06 +0200 [thread overview]
Message-ID: <1316088306.3992.10.camel@jlt3.sipsolutions.net> (raw)
In-Reply-To: <1316088181-3869-1-git-send-email-rmanohar@qca.qualcomm.com>
On Thu, 2011-09-15 at 17:33 +0530, Rajkumar Manoharan wrote:
> cfg80211_conn_scan allows disabled channels at scan request.
> Hence probe request was seen at the disabled one. This patch
> ensures that disabled channel never be added into the scan
> request's channel list.
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Good catch. We should probably refactor this later to go through a
single point...
johannes
> Signed-off-by: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
> ---
> net/wireless/sme.c | 19 ++++++++++++-------
> 1 files changed, 12 insertions(+), 7 deletions(-)
>
> diff --git a/net/wireless/sme.c b/net/wireless/sme.c
> index dec0fa2..6e86d5a 100644
> --- a/net/wireless/sme.c
> +++ b/net/wireless/sme.c
> @@ -110,17 +110,22 @@ static int cfg80211_conn_scan(struct wireless_dev *wdev)
> else {
> int i = 0, j;
> enum ieee80211_band band;
> + struct ieee80211_supported_band *bands;
> + struct ieee80211_channel *channel;
>
> for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
> - if (!wdev->wiphy->bands[band])
> + bands = wdev->wiphy->bands[band];
> + if (!bands)
> continue;
> - for (j = 0; j < wdev->wiphy->bands[band]->n_channels;
> - i++, j++)
> - request->channels[i] =
> - &wdev->wiphy->bands[band]->channels[j];
> - request->rates[band] =
> - (1 << wdev->wiphy->bands[band]->n_bitrates) - 1;
> + for (j = 0; j < bands->n_channels; j++) {
> + channel = &bands->channels[j];
> + if (channel->flags & IEEE80211_CHAN_DISABLED)
> + continue;
> + request->channels[i++] = channel;
> + }
> + request->rates[band] = (1 << bands->n_bitrates) - 1;
> }
> + n_channels = i;
> }
> request->n_channels = n_channels;
> request->ssids = (void *)&request->channels[n_channels];
next prev parent reply other threads:[~2011-09-15 12:05 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-15 12:03 [RFC] wireless: Do not allow disabled channel in scan request Rajkumar Manoharan
2011-09-15 12:05 ` Johannes Berg [this message]
2011-09-15 12:08 ` Rajkumar Manoharan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1316088306.3992.10.camel@jlt3.sipsolutions.net \
--to=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=rmanohar@qca.qualcomm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox