diff options
author | Zhu Yi <yi.zhu@intel.com> | 2006-08-20 23:37:26 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-08-29 17:06:32 -0400 |
commit | a9f0d42321a7ac40d244a7c6d74a3d1c7a4aa4f3 (patch) | |
tree | 1af416fbb674aaba4aa9d4023f04f40a06f35367 /drivers/net/wireless/ipw2200.c | |
parent | ab644b0b51bf3170b398c087b7a34be6d3c7b7ba (diff) |
[PATCH] ipw2200: Reassociate even if set the same essid.
This patch traps the case when the essid is being set to its
current value. If the essid is being set again and we are already
associated, chances are some other parameters have also been altered.
I think it is safer to do the re-association for this case.
Signed-off-by: Bill Moss <bmoss@clemson.edu>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ipw2200.c')
-rw-r--r-- | drivers/net/wireless/ipw2200.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/net/wireless/ipw2200.c b/drivers/net/wireless/ipw2200.c index 27e87d1b9f44..e929f880dea0 100644 --- a/drivers/net/wireless/ipw2200.c +++ b/drivers/net/wireless/ipw2200.c | |||
@@ -8837,7 +8837,6 @@ static int ipw_wx_set_essid(struct net_device *dev, | |||
8837 | union iwreq_data *wrqu, char *extra) | 8837 | union iwreq_data *wrqu, char *extra) |
8838 | { | 8838 | { |
8839 | struct ipw_priv *priv = ieee80211_priv(dev); | 8839 | struct ipw_priv *priv = ieee80211_priv(dev); |
8840 | char *essid; | ||
8841 | int length; | 8840 | int length; |
8842 | 8841 | ||
8843 | mutex_lock(&priv->mutex); | 8842 | mutex_lock(&priv->mutex); |
@@ -8852,12 +8851,14 @@ static int ipw_wx_set_essid(struct net_device *dev, | |||
8852 | return 0; | 8851 | return 0; |
8853 | } | 8852 | } |
8854 | 8853 | ||
8855 | length = min(wrqu->essid.length, IW_ESSID_MAX_SIZE); | 8854 | length = min((int)wrqu->essid.length, IW_ESSID_MAX_SIZE); |
8856 | essid = extra; | 8855 | if (!extra[length - 1]) |
8856 | length--; | ||
8857 | 8857 | ||
8858 | priv->config |= CFG_STATIC_ESSID; | 8858 | priv->config |= CFG_STATIC_ESSID; |
8859 | 8859 | ||
8860 | if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) { | 8860 | if (priv->essid_len == length && !memcmp(priv->essid, extra, length) |
8861 | && (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING))) { | ||
8861 | IPW_DEBUG_WX("ESSID set to current ESSID.\n"); | 8862 | IPW_DEBUG_WX("ESSID set to current ESSID.\n"); |
8862 | mutex_unlock(&priv->mutex); | 8863 | mutex_unlock(&priv->mutex); |
8863 | return 0; | 8864 | return 0; |
@@ -8867,7 +8868,7 @@ static int ipw_wx_set_essid(struct net_device *dev, | |||
8867 | length); | 8868 | length); |
8868 | 8869 | ||
8869 | priv->essid_len = length; | 8870 | priv->essid_len = length; |
8870 | memcpy(priv->essid, essid, priv->essid_len); | 8871 | memcpy(priv->essid, extra, priv->essid_len); |
8871 | 8872 | ||
8872 | /* Network configuration changed -- force [re]association */ | 8873 | /* Network configuration changed -- force [re]association */ |
8873 | IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n"); | 8874 | IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n"); |