From: mabbas <mabbas@linux.intel.com>
To: dragoran <drago01@gmail.com>
Cc: Johannes Berg <johannes@sipsolutions.net>,
ipw3945-devel@lists.sourceforge.net,
linux-wireless@vger.kernel.org,
Larry Finger <larry.finger@lwfinger.net>
Subject: Re: [ipw3945-devel] iwl3945 lists supported rates backwards
Date: Mon, 29 Oct 2007 13:31:54 -0700 [thread overview]
Message-ID: <4726433A.2070808@linux.intel.com> (raw)
In-Reply-To: <f6ca9fed0710291153o68ec2cffqbd2cc3f6d57fa11b@mail.gmail.com>
This might break rate scaling for 3945 adapter. I look into rearrange
the rate and do what ever needed to make rate scaling wont break.
Mohamed
dragoran wrote:
> On 10/29/07, Johannes Berg <johannes@sipsolutions.net> wrote:
>
>>> --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c
>>> +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c
>>> @@ -5414,10 +5414,10 @@ static int iwl_init_geos(struct iwl_priv *priv)
>>> * is supported by a mode -- and the first match is taken
>>> */
>>>
>>> - if (modes[G].num_channels)
>>> - ieee80211_register_hwmode(priv->hw, &modes[G]);
>>> if (modes[B].num_channels)
>>> ieee80211_register_hwmode(priv->hw, &modes[B]);
>>> + if (modes[G].num_channels)
>>> + ieee80211_register_hwmode(priv->hw, &modes[G]);
>>> if (modes[A].num_channels)
>>> ieee80211_register_hwmode(priv->hw, &modes[A]);
>>>
>> Huh no, you misunderstood my mail.
>>
>> This makes mac80211 always select 802.11B mode which is not what you
>> want. You want to change the order of rates within the G mode.
>>
>>
>
> shouldn't this one do it?
> (untested)
>
> ---
> diff --git a/origin/iwl-3945-rs.h b/origin/iwl-3945-rs.h
> index 09fa1a7..18b19a2 100644
> --- a/origin/iwl-3945-rs.h
> +++ b/origin/iwl-3945-rs.h
> @@ -39,7 +39,11 @@ struct iwl_rate_info {
> };
>
> enum {
> - IWL_RATE_6M_INDEX = 0,
> + IWL_RATE_1M_INDEX = 0,
> + IWL_RATE_2M_INDEX,
> + IWL_RATE_5M_INDEX,
> + IWL_RATE_11M_INDEX,
> + IWL_RATE_6M_INDEX,
> IWL_RATE_9M_INDEX,
> IWL_RATE_12M_INDEX,
> IWL_RATE_18M_INDEX,
> @@ -47,10 +51,6 @@ enum {
> IWL_RATE_36M_INDEX,
> IWL_RATE_48M_INDEX,
> IWL_RATE_54M_INDEX,
> - IWL_RATE_1M_INDEX,
> - IWL_RATE_2M_INDEX,
> - IWL_RATE_5M_INDEX,
> - IWL_RATE_11M_INDEX,
> IWL_RATE_COUNT,
> IWL_RATE_INVM_INDEX,
> IWL_RATE_INVALID = IWL_RATE_INVM_INDEX
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems? Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >> http://get.splunk.com/
> _______________________________________________
> Ipw3945-devel mailing list
> Ipw3945-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ipw3945-devel
>
next prev parent reply other threads:[~2007-10-29 20:37 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-19 22:15 iwl3945 lists supported rates backwards Pavel Roskin
2007-10-19 22:28 ` Larry Finger
2007-10-20 5:40 ` Pavel Roskin
2007-10-20 8:21 ` dragoran
2007-10-29 7:51 ` Pavel Roskin
2007-10-29 10:50 ` dragoran
2007-10-29 14:26 ` Pavel Roskin
2007-10-29 10:55 ` dragoran
2007-10-29 14:12 ` Johannes Berg
2007-10-29 16:58 ` Pavel Roskin
2007-10-29 17:09 ` Johannes Berg
2007-10-29 18:53 ` dragoran
2007-10-29 20:31 ` mabbas [this message]
2007-10-30 12:09 ` [ipw3945-devel] " Johannes Berg
[not found] ` <1ba2fa240710191714j645c8bfp87a2269b9c141c52@mail.gmail.com>
2007-10-20 6:05 ` Pavel Roskin
2007-10-29 7:54 ` Pavel Roskin
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=4726433A.2070808@linux.intel.com \
--to=mabbas@linux.intel.com \
--cc=drago01@gmail.com \
--cc=ipw3945-devel@lists.sourceforge.net \
--cc=johannes@sipsolutions.net \
--cc=larry.finger@lwfinger.net \
--cc=linux-wireless@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.