From: ian <ischram@telenet.be>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: "John W. Linville" <linville@tuxdriver.com>,
wireless <linux-wireless@vger.kernel.org>
Subject: Re: letting drivers choose their preferred rate scale
Date: Mon, 03 Sep 2007 16:06:56 +0200 [thread overview]
Message-ID: <46DC1500.7090808@telenet.be> (raw)
In-Reply-To: <1188808692.14564.24.camel@johannes.berg>
Johannes Berg wrote:
> On Mon, 2007-09-03 at 02:21 +0200, ian wrote:
>
>> we could additionally remove the module_alias from rc80211_simple
>
> indeed, please roll into this patch
>
I don't know enough from debugfs yet, to do that part, but I'll read up.
---
Make rc80211_simple the default rate scaling algorithm
Signed-of-by: Ian Schram <ischram@telenet.be>
--- a/net/mac80211/ieee80211_rate.c 2007-09-03 01:26:18.000000000 +0200
+++ b/net/mac80211/ieee80211_rate.c 2007-09-03 01:46:54.000000000 +0200
@@ -62,7 +62,7 @@ ieee80211_try_rate_control_ops_get(const
mutex_lock(&rate_ctrl_mutex);
list_for_each_entry(alg, &rate_ctrl_algs, list) {
- if (!name || !strcmp(alg->ops->name, name))
+ if (!strcmp(alg->ops->name, name))
if (try_module_get(alg->ops->module)) {
ops = alg->ops;
break;
@@ -78,11 +78,12 @@ static struct rate_control_ops *
ieee80211_rate_control_ops_get(const char *name)
{
struct rate_control_ops *ops;
+ const char *try_name = name ? name : "simple";
- ops = ieee80211_try_rate_control_ops_get(name);
+ ops = ieee80211_try_rate_control_ops_get(try_name);
if (!ops) {
- request_module("rc80211_%s", name ? name : "default");
- ops = ieee80211_try_rate_control_ops_get(name);
+ request_module("rc80211_%s", try_name);
+ ops = ieee80211_try_rate_control_ops_get(try_name);
}
return ops;
}
--- a/net/mac80211/rc80211_simple.c 2007-09-03 15:53:42.000000000 +0200
+++ b/net/mac80211/rc80211_simple.c 2007-09-03 15:54:40.000000000 +0200
@@ -29,7 +29,6 @@
#define RATE_CONTROL_INTERVAL (HZ / 20)
#define RATE_CONTROL_MIN_TX 10
-MODULE_ALIAS("rc80211_default");
static void rate_control_rate_inc(struct ieee80211_local *local,
struct sta_info *sta)
> johannes
next prev parent reply other threads:[~2007-09-03 14:06 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-25 2:37 letting drivers choose their preferred rate scale ian
2007-08-25 8:02 ` Johannes Berg
2007-08-25 12:15 ` ian
2007-08-25 14:19 ` Jochen Voss
2007-08-27 10:49 ` Johannes Berg
2007-08-31 18:09 ` John W. Linville
2007-09-03 0:21 ` ian
2007-09-03 8:20 ` Johannes Berg
2007-09-03 8:38 ` Johannes Berg
2007-09-03 14:06 ` ian [this message]
2007-09-13 18:39 ` John W. Linville
2007-09-13 21:42 ` Ian Schram
2007-09-14 12:08 ` Johannes Berg
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=46DC1500.7090808@telenet.be \
--to=ischram@telenet.be \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.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 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.