Commit 602114ae authored by Holger Schurig's avatar Holger Schurig Committed by John W. Linville

libertas: add access functions for mesh open/connect status

Signed-off-by: default avatarHolger Schurig <holgerschurig@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e4da1a81
...@@ -1304,7 +1304,7 @@ int lbs_execute_next_command(struct lbs_private *priv) ...@@ -1304,7 +1304,7 @@ int lbs_execute_next_command(struct lbs_private *priv)
if ((priv->psmode != LBS802_11POWERMODECAM) && if ((priv->psmode != LBS802_11POWERMODECAM) &&
(priv->psstate == PS_STATE_FULL_POWER) && (priv->psstate == PS_STATE_FULL_POWER) &&
((priv->connect_status == LBS_CONNECTED) || ((priv->connect_status == LBS_CONNECTED) ||
(priv->mesh_connect_status == LBS_CONNECTED))) { lbs_mesh_connected(priv))) {
if (priv->secinfo.WPAenabled || if (priv->secinfo.WPAenabled ||
priv->secinfo.WPA2enabled) { priv->secinfo.WPA2enabled) {
/* check for valid WPA group keys */ /* check for valid WPA group keys */
......
...@@ -123,7 +123,7 @@ static ssize_t lbs_rtap_set(struct device *dev, ...@@ -123,7 +123,7 @@ static ssize_t lbs_rtap_set(struct device *dev,
if (priv->monitormode == monitor_mode) if (priv->monitormode == monitor_mode)
return strlen(buf); return strlen(buf);
if (!priv->monitormode) { if (!priv->monitormode) {
if (priv->infra_open || priv->mesh_open) if (priv->infra_open || lbs_mesh_open(priv))
return -EBUSY; return -EBUSY;
if (priv->mode == IW_MODE_INFRA) if (priv->mode == IW_MODE_INFRA)
lbs_cmd_80211_deauthenticate(priv, lbs_cmd_80211_deauthenticate(priv,
...@@ -619,7 +619,7 @@ static int lbs_thread(void *data) ...@@ -619,7 +619,7 @@ static int lbs_thread(void *data)
if (priv->connect_status == LBS_CONNECTED) if (priv->connect_status == LBS_CONNECTED)
netif_wake_queue(priv->dev); netif_wake_queue(priv->dev);
if (priv->mesh_dev && if (priv->mesh_dev &&
priv->mesh_connect_status == LBS_CONNECTED) lbs_mesh_connected(priv))
netif_wake_queue(priv->mesh_dev); netif_wake_queue(priv->mesh_dev);
} }
} }
...@@ -833,7 +833,6 @@ static int lbs_init_adapter(struct lbs_private *priv) ...@@ -833,7 +833,6 @@ static int lbs_init_adapter(struct lbs_private *priv)
memset(priv->current_addr, 0xff, ETH_ALEN); memset(priv->current_addr, 0xff, ETH_ALEN);
priv->connect_status = LBS_DISCONNECTED; priv->connect_status = LBS_DISCONNECTED;
priv->mesh_connect_status = LBS_DISCONNECTED;
priv->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM; priv->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
priv->mode = IW_MODE_INFRA; priv->mode = IW_MODE_INFRA;
priv->channel = DEFAULT_AD_HOC_CHANNEL; priv->channel = DEFAULT_AD_HOC_CHANNEL;
......
#include <linux/moduleparam.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/etherdevice.h> #include <linux/etherdevice.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
...@@ -196,6 +195,8 @@ int lbs_init_mesh(struct lbs_private *priv) ...@@ -196,6 +195,8 @@ int lbs_init_mesh(struct lbs_private *priv)
lbs_deb_enter(LBS_DEB_MESH); lbs_deb_enter(LBS_DEB_MESH);
priv->mesh_connect_status = LBS_DISCONNECTED;
/* Determine mesh_fw_ver from fwrelease and fwcapinfo */ /* Determine mesh_fw_ver from fwrelease and fwcapinfo */
/* 5.0.16p0 9.0.0.p0 is known to NOT support any mesh */ /* 5.0.16p0 9.0.0.p0 is known to NOT support any mesh */
/* 5.110.22 have mesh command with 0xa3 command id */ /* 5.110.22 have mesh command with 0xa3 command id */
......
...@@ -84,4 +84,10 @@ void lbs_mesh_ethtool_get_strings(struct net_device *dev, ...@@ -84,4 +84,10 @@ void lbs_mesh_ethtool_get_strings(struct net_device *dev,
uint32_t stringset, uint8_t *s); uint32_t stringset, uint8_t *s);
/* Accessors */
#define lbs_mesh_open(priv) (priv->mesh_open)
#define lbs_mesh_connected(priv) (priv->mesh_connect_status == LBS_CONNECTED)
#endif #endif
...@@ -640,7 +640,7 @@ int lbs_scan_networks(struct lbs_private *priv, int full_scan) ...@@ -640,7 +640,7 @@ int lbs_scan_networks(struct lbs_private *priv, int full_scan)
if (!priv->tx_pending_len) if (!priv->tx_pending_len)
netif_wake_queue(priv->dev); netif_wake_queue(priv->dev);
} }
if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED)) { if (priv->mesh_dev && lbs_mesh_connected(priv)) {
netif_carrier_on(priv->mesh_dev); netif_carrier_on(priv->mesh_dev);
if (!priv->tx_pending_len) if (!priv->tx_pending_len)
netif_wake_queue(priv->mesh_dev); netif_wake_queue(priv->mesh_dev);
......
...@@ -198,7 +198,7 @@ void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count) ...@@ -198,7 +198,7 @@ void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count)
if (priv->connect_status == LBS_CONNECTED) if (priv->connect_status == LBS_CONNECTED)
netif_wake_queue(priv->dev); netif_wake_queue(priv->dev);
if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED)) if (priv->mesh_dev && lbs_mesh_connected(priv))
netif_wake_queue(priv->mesh_dev); netif_wake_queue(priv->mesh_dev);
} }
EXPORT_SYMBOL_GPL(lbs_send_tx_feedback); EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);
...@@ -192,7 +192,7 @@ static void copy_active_data_rates(struct lbs_private *priv, u8 *rates) ...@@ -192,7 +192,7 @@ static void copy_active_data_rates(struct lbs_private *priv, u8 *rates)
lbs_deb_enter(LBS_DEB_WEXT); lbs_deb_enter(LBS_DEB_WEXT);
if ((priv->connect_status != LBS_CONNECTED) && if ((priv->connect_status != LBS_CONNECTED) &&
(priv->mesh_connect_status != LBS_CONNECTED)) !lbs_mesh_connected(priv))
memcpy(rates, lbs_bg_rates, MAX_RATES); memcpy(rates, lbs_bg_rates, MAX_RATES);
else else
memcpy(rates, priv->curbssparams.rates, MAX_RATES); memcpy(rates, priv->curbssparams.rates, MAX_RATES);
...@@ -307,7 +307,7 @@ static int mesh_get_nick(struct net_device *dev, struct iw_request_info *info, ...@@ -307,7 +307,7 @@ static int mesh_get_nick(struct net_device *dev, struct iw_request_info *info,
/* Use nickname to indicate that mesh is on */ /* Use nickname to indicate that mesh is on */
if (priv->mesh_connect_status == LBS_CONNECTED) { if (lbs_mesh_connected(priv)) {
strncpy(extra, "Mesh", 12); strncpy(extra, "Mesh", 12);
extra[12] = '\0'; extra[12] = '\0';
dwrq->length = strlen(extra); dwrq->length = strlen(extra);
...@@ -863,7 +863,7 @@ static struct iw_statistics *lbs_get_wireless_stats(struct net_device *dev) ...@@ -863,7 +863,7 @@ static struct iw_statistics *lbs_get_wireless_stats(struct net_device *dev)
/* If we're not associated, all quality values are meaningless */ /* If we're not associated, all quality values are meaningless */
if ((priv->connect_status != LBS_CONNECTED) && if ((priv->connect_status != LBS_CONNECTED) &&
(priv->mesh_connect_status != LBS_CONNECTED)) !lbs_mesh_connected(priv))
goto out; goto out;
/* Quality by RSSI */ /* Quality by RSSI */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment