forked from luck/tmp_suning_uos_patched
libertas: add access functions for mesh open/connect status
Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
e4da1a81a9
commit
602114ae59
|
@ -1304,7 +1304,7 @@ int lbs_execute_next_command(struct lbs_private *priv)
|
|||
if ((priv->psmode != LBS802_11POWERMODECAM) &&
|
||||
(priv->psstate == PS_STATE_FULL_POWER) &&
|
||||
((priv->connect_status == LBS_CONNECTED) ||
|
||||
(priv->mesh_connect_status == LBS_CONNECTED))) {
|
||||
lbs_mesh_connected(priv))) {
|
||||
if (priv->secinfo.WPAenabled ||
|
||||
priv->secinfo.WPA2enabled) {
|
||||
/* check for valid WPA group keys */
|
||||
|
|
|
@ -123,7 +123,7 @@ static ssize_t lbs_rtap_set(struct device *dev,
|
|||
if (priv->monitormode == monitor_mode)
|
||||
return strlen(buf);
|
||||
if (!priv->monitormode) {
|
||||
if (priv->infra_open || priv->mesh_open)
|
||||
if (priv->infra_open || lbs_mesh_open(priv))
|
||||
return -EBUSY;
|
||||
if (priv->mode == IW_MODE_INFRA)
|
||||
lbs_cmd_80211_deauthenticate(priv,
|
||||
|
@ -619,7 +619,7 @@ static int lbs_thread(void *data)
|
|||
if (priv->connect_status == LBS_CONNECTED)
|
||||
netif_wake_queue(priv->dev);
|
||||
if (priv->mesh_dev &&
|
||||
priv->mesh_connect_status == LBS_CONNECTED)
|
||||
lbs_mesh_connected(priv))
|
||||
netif_wake_queue(priv->mesh_dev);
|
||||
}
|
||||
}
|
||||
|
@ -833,7 +833,6 @@ static int lbs_init_adapter(struct lbs_private *priv)
|
|||
memset(priv->current_addr, 0xff, ETH_ALEN);
|
||||
|
||||
priv->connect_status = LBS_DISCONNECTED;
|
||||
priv->mesh_connect_status = LBS_DISCONNECTED;
|
||||
priv->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
|
||||
priv->mode = IW_MODE_INFRA;
|
||||
priv->channel = DEFAULT_AD_HOC_CHANNEL;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#include <linux/moduleparam.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/etherdevice.h>
|
||||
#include <linux/netdevice.h>
|
||||
|
@ -196,6 +195,8 @@ int lbs_init_mesh(struct lbs_private *priv)
|
|||
|
||||
lbs_deb_enter(LBS_DEB_MESH);
|
||||
|
||||
priv->mesh_connect_status = LBS_DISCONNECTED;
|
||||
|
||||
/* Determine mesh_fw_ver from fwrelease and fwcapinfo */
|
||||
/* 5.0.16p0 9.0.0.p0 is known to NOT support any mesh */
|
||||
/* 5.110.22 have mesh command with 0xa3 command id */
|
||||
|
|
|
@ -84,4 +84,10 @@ void lbs_mesh_ethtool_get_strings(struct net_device *dev,
|
|||
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
|
||||
|
|
|
@ -640,7 +640,7 @@ int lbs_scan_networks(struct lbs_private *priv, int full_scan)
|
|||
if (!priv->tx_pending_len)
|
||||
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);
|
||||
if (!priv->tx_pending_len)
|
||||
netif_wake_queue(priv->mesh_dev);
|
||||
|
|
|
@ -198,7 +198,7 @@ void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count)
|
|||
if (priv->connect_status == LBS_CONNECTED)
|
||||
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);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);
|
||||
|
|
|
@ -192,7 +192,7 @@ static void copy_active_data_rates(struct lbs_private *priv, u8 *rates)
|
|||
lbs_deb_enter(LBS_DEB_WEXT);
|
||||
|
||||
if ((priv->connect_status != LBS_CONNECTED) &&
|
||||
(priv->mesh_connect_status != LBS_CONNECTED))
|
||||
!lbs_mesh_connected(priv))
|
||||
memcpy(rates, lbs_bg_rates, MAX_RATES);
|
||||
else
|
||||
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,
|
|||
|
||||
/* Use nickname to indicate that mesh is on */
|
||||
|
||||
if (priv->mesh_connect_status == LBS_CONNECTED) {
|
||||
if (lbs_mesh_connected(priv)) {
|
||||
strncpy(extra, "Mesh", 12);
|
||||
extra[12] = '\0';
|
||||
dwrq->length = strlen(extra);
|
||||
|
@ -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 ((priv->connect_status != LBS_CONNECTED) &&
|
||||
(priv->mesh_connect_status != LBS_CONNECTED))
|
||||
!lbs_mesh_connected(priv))
|
||||
goto out;
|
||||
|
||||
/* Quality by RSSI */
|
||||
|
|
Loading…
Reference in New Issue
Block a user