2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/rtnetlink.h>
13 #include "ieee80211_rate.h"
14 #include "ieee80211_i.h"
16 struct rate_control_alg
{
17 struct list_head list
;
18 struct rate_control_ops
*ops
;
21 static LIST_HEAD(rate_ctrl_algs
);
22 static DEFINE_MUTEX(rate_ctrl_mutex
);
24 int ieee80211_rate_control_register(struct rate_control_ops
*ops
)
26 struct rate_control_alg
*alg
;
31 mutex_lock(&rate_ctrl_mutex
);
32 list_for_each_entry(alg
, &rate_ctrl_algs
, list
) {
33 if (!strcmp(alg
->ops
->name
, ops
->name
)) {
34 /* don't register an algorithm twice */
40 alg
= kzalloc(sizeof(*alg
), GFP_KERNEL
);
42 mutex_unlock(&rate_ctrl_mutex
);
47 list_add_tail(&alg
->list
, &rate_ctrl_algs
);
48 mutex_unlock(&rate_ctrl_mutex
);
52 EXPORT_SYMBOL(ieee80211_rate_control_register
);
54 void ieee80211_rate_control_unregister(struct rate_control_ops
*ops
)
56 struct rate_control_alg
*alg
;
58 mutex_lock(&rate_ctrl_mutex
);
59 list_for_each_entry(alg
, &rate_ctrl_algs
, list
) {
60 if (alg
->ops
== ops
) {
65 mutex_unlock(&rate_ctrl_mutex
);
68 EXPORT_SYMBOL(ieee80211_rate_control_unregister
);
70 static struct rate_control_ops
*
71 ieee80211_try_rate_control_ops_get(const char *name
)
73 struct rate_control_alg
*alg
;
74 struct rate_control_ops
*ops
= NULL
;
79 mutex_lock(&rate_ctrl_mutex
);
80 list_for_each_entry(alg
, &rate_ctrl_algs
, list
) {
81 if (!strcmp(alg
->ops
->name
, name
))
82 if (try_module_get(alg
->ops
->module
)) {
87 mutex_unlock(&rate_ctrl_mutex
);
91 /* Get the rate control algorithm. If `name' is NULL, get the first
92 * available algorithm. */
93 static struct rate_control_ops
*
94 ieee80211_rate_control_ops_get(const char *name
)
96 struct rate_control_ops
*ops
;
101 ops
= ieee80211_try_rate_control_ops_get(name
);
103 request_module("rc80211_%s", name
);
104 ops
= ieee80211_try_rate_control_ops_get(name
);
109 static void ieee80211_rate_control_ops_put(struct rate_control_ops
*ops
)
111 module_put(ops
->module
);
114 struct rate_control_ref
*rate_control_alloc(const char *name
,
115 struct ieee80211_local
*local
)
117 struct rate_control_ref
*ref
;
119 ref
= kmalloc(sizeof(struct rate_control_ref
), GFP_KERNEL
);
122 kref_init(&ref
->kref
);
123 ref
->ops
= ieee80211_rate_control_ops_get(name
);
126 ref
->priv
= ref
->ops
->alloc(local
);
132 ieee80211_rate_control_ops_put(ref
->ops
);
139 static void rate_control_release(struct kref
*kref
)
141 struct rate_control_ref
*ctrl_ref
;
143 ctrl_ref
= container_of(kref
, struct rate_control_ref
, kref
);
144 ctrl_ref
->ops
->free(ctrl_ref
->priv
);
145 ieee80211_rate_control_ops_put(ctrl_ref
->ops
);
149 struct rate_control_ref
*rate_control_get(struct rate_control_ref
*ref
)
151 kref_get(&ref
->kref
);
155 void rate_control_put(struct rate_control_ref
*ref
)
157 kref_put(&ref
->kref
, rate_control_release
);
160 int ieee80211_init_rate_ctrl_alg(struct ieee80211_local
*local
,
163 struct rate_control_ref
*ref
, *old
;
166 if (local
->open_count
|| netif_running(local
->mdev
))
169 ref
= rate_control_alloc(name
, local
);
171 printk(KERN_WARNING
"%s: Failed to select rate control "
172 "algorithm\n", wiphy_name(local
->hw
.wiphy
));
176 old
= local
->rate_ctrl
;
177 local
->rate_ctrl
= ref
;
179 rate_control_put(old
);
180 sta_info_flush(local
, NULL
);
183 printk(KERN_DEBUG
"%s: Selected rate control "
184 "algorithm '%s'\n", wiphy_name(local
->hw
.wiphy
),
191 void rate_control_deinitialize(struct ieee80211_local
*local
)
193 struct rate_control_ref
*ref
;
195 ref
= local
->rate_ctrl
;
196 local
->rate_ctrl
= NULL
;
197 rate_control_put(ref
);