aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/assoc.c
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2007-12-11 20:03:01 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:06:58 -0500
commit8642f1f06292c4f30c7870a693f9ae94252e7ff2 (patch)
treea62594a6554b11d0b7da0ac6a17e067e43749350 /drivers/net/wireless/libertas/assoc.c
parent88ae2915ccff97466e7a1e542f4a4d01c46b23f6 (diff)
libertas: disable mesh temporarily while setting eth channel/assoc
Otherwise the device won't let us change channels. Signed-off-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/assoc.c')
-rw-r--r--drivers/net/wireless/libertas/assoc.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c
index a4b9756ebb7f..7b672fe62cf9 100644
--- a/drivers/net/wireless/libertas/assoc.c
+++ b/drivers/net/wireless/libertas/assoc.c
@@ -204,6 +204,12 @@ static int assoc_helper_channel(struct lbs_private *priv,
204 if (assoc_req->channel == priv->curbssparams.channel) 204 if (assoc_req->channel == priv->curbssparams.channel)
205 goto done; 205 goto done;
206 206
207 if (priv->mesh_dev) {
208 /* Disconnect mesh while associating -- otherwise it
209 won't let us change channels */
210 lbs_mesh_config(priv, 0);
211 }
212
207 lbs_deb_assoc("ASSOC: channel: %d -> %d\n", 213 lbs_deb_assoc("ASSOC: channel: %d -> %d\n",
208 priv->curbssparams.channel, assoc_req->channel); 214 priv->curbssparams.channel, assoc_req->channel);
209 215
@@ -221,7 +227,7 @@ static int assoc_helper_channel(struct lbs_private *priv,
221 if (assoc_req->channel != priv->curbssparams.channel) { 227 if (assoc_req->channel != priv->curbssparams.channel) {
222 lbs_deb_assoc("ASSOC: channel: failed to update channel to %d\n", 228 lbs_deb_assoc("ASSOC: channel: failed to update channel to %d\n",
223 assoc_req->channel); 229 assoc_req->channel);
224 goto done; 230 goto restore_mesh;
225 } 231 }
226 232
227 if ( assoc_req->secinfo.wep_enabled 233 if ( assoc_req->secinfo.wep_enabled
@@ -236,7 +242,11 @@ static int assoc_helper_channel(struct lbs_private *priv,
236 /* Must restart/rejoin adhoc networks after channel change */ 242 /* Must restart/rejoin adhoc networks after channel change */
237 set_bit(ASSOC_FLAG_SSID, &assoc_req->flags); 243 set_bit(ASSOC_FLAG_SSID, &assoc_req->flags);
238 244
239done: 245 restore_mesh:
246 if (priv->mesh_dev)
247 lbs_mesh_config(priv, 1);
248
249 done:
240 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret); 250 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
241 return ret; 251 return ret;
242} 252}