Search Linux Wireless

Re: [PATCH] libertas: Remove carrier signaling from the scan code

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, 2009-12-18 at 11:36 +0100, Samuel Ortiz wrote:
> There is no reason to signal a carrier off when doing a 802.11 scan.
> 
> Cc: Dan Williams <dcbw@xxxxxxxxxx>
> Cc: Holger Schurig <holgerschurig@xxxxxxxxx>
> Signed-off-by: Samuel Ortiz <sameo@xxxxxxxxxxxxxxx>

Acked-by: Dan Williams <dcbw@xxxxxxxxxx>

> ---
>  drivers/net/wireless/libertas/scan.c |   22 ++++++++--------------
>  1 files changed, 8 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/net/wireless/libertas/scan.c b/drivers/net/wireless/libertas/scan.c
> index c6a6c04..b0b1c78 100644
> --- a/drivers/net/wireless/libertas/scan.c
> +++ b/drivers/net/wireless/libertas/scan.c
> @@ -567,11 +567,8 @@ int lbs_scan_networks(struct lbs_private *priv, int full_scan)
>  	chan_count = lbs_scan_create_channel_list(priv, chan_list);
>  
>  	netif_stop_queue(priv->dev);
> -	netif_carrier_off(priv->dev);
> -	if (priv->mesh_dev) {
> +	if (priv->mesh_dev)
>  		netif_stop_queue(priv->mesh_dev);
> -		netif_carrier_off(priv->mesh_dev);
> -	}
>  
>  	/* Prepare to continue an interrupted scan */
>  	lbs_deb_scan("chan_count %d, scan_channel %d\n",
> @@ -635,16 +632,13 @@ out2:
>  	priv->scan_channel = 0;
>  
>  out:
> -	if (priv->connect_status == LBS_CONNECTED) {
> -		netif_carrier_on(priv->dev);
> -		if (!priv->tx_pending_len)
> -			netif_wake_queue(priv->dev);
> -	}
> -	if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED)) {
> -		netif_carrier_on(priv->mesh_dev);
> -		if (!priv->tx_pending_len)
> -			netif_wake_queue(priv->mesh_dev);
> -	}
> +	if (priv->connect_status == LBS_CONNECTED && !priv->tx_pending_len)
> +		netif_wake_queue(priv->dev);
> +
> +	if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED) &&
> +	    !priv->tx_pending_len)
> +		netif_wake_queue(priv->mesh_dev);
> +
>  	kfree(chan_list);
>  
>  	lbs_deb_leave_args(LBS_DEB_SCAN, "ret %d", ret);

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Host AP]     [ATH6KL]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [Linux Kernel]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Samba]     [Device Mapper]
  Powered by Linux