From: mabbas <mabbas@linux.intel.com>
To: netdev@vger.kernel.org
Cc: jbenc@suse.cz
Subject: [PATCH 7/7] d80211: getting wrong freq value if we did hardware scan
Date: Mon, 28 Aug 2006 13:57:28 -0700 [thread overview]
Message-ID: <44F358B8.60700@linux.intel.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 333 bytes --]
In this patch we search all A-BAND available channels to get the right
frequency value. this might not be the right thing to do in beacon
parsing. Another approach is to have a static array of the maximum
A-BAND channel number then we can map from channel to frequency fast. we
can set the values of this array at run time.
[-- Attachment #2: d80211-iwlist-fix.patch --]
[-- Type: text/x-patch, Size: 1750 bytes --]
This patch modify d80211 to fix getting wrong frequency value
for scan implemented in hardware. With harware scan we might get
beacon of a network that is on different channel that in
local->conf.channel causing set freq to wrong value.
Signed-off-by: Mohamed Abbas <mabbas@linux.intel.com>
diff --git a/net/d80211/ieee80211_sta.c b/net/d80211/ieee80211_sta.c
index a933d92..374193e 100644
--- a/net/d80211/ieee80211_sta.c
+++ b/net/d80211/ieee80211_sta.c
@@ -1543,8 +1543,6 @@ #endif
bss->channel = channel;
bss->freq = local->conf.freq;
if (channel != local->conf.channel &&
- (local->conf.phymode == MODE_IEEE80211G ||
- local->conf.phymode == MODE_IEEE80211B) &&
channel >= 1 && channel <= 14) {
static const int freq_list[] = {
2412, 2417, 2422, 2427, 2432, 2437, 2442,
@@ -1553,6 +1551,32 @@ #endif
/* IEEE 802.11g/b mode can receive packets from neighboring
* channels, so map the channel into frequency. */
bss->freq = freq_list[channel - 1];
+
+ if (bss->hw_mode != MODE_IEEE80211G &&
+ bss->hw_mode != MODE_IEEE80211B)
+ bss->hw_mode = MODE_IEEE80211G;
+
+ } else if (channel != local->conf.channel ) {
+ int j, i;
+ int b_found = 0;
+
+ /* not a bg channel search in other mode */
+ for (i = 0; i < local->hw->num_modes; i++) {
+ struct ieee80211_hw_modes *mode = &local->hw->modes[i];
+
+ if ((mode->mode != MODE_IEEE80211G) &&
+ (mode->mode != MODE_IEEE80211B)){
+ for (j = 0; mode->num_channels; j++)
+ if (mode->channels[j].chan == channel) {
+ bss->freq = mode->channels[j].freq;
+ b_found = 1;
+ bss->hw_mode = mode->mode;
+ break;
+ }
+ }
+ if (b_found)
+ break;
+ }
}
bss->timestamp = timestamp;
bss->last_update = jiffies;
next reply other threads:[~2006-08-28 20:57 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-28 20:57 mabbas [this message]
2006-09-21 17:29 ` [PATCH 7/7] d80211: getting wrong freq value if we did hardware scan Jiri Benc
2006-09-21 17:42 ` mabbas
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=44F358B8.60700@linux.intel.com \
--to=mabbas@linux.intel.com \
--cc=jbenc@suse.cz \
--cc=netdev@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.