2.6.37-stable review patch. If anyone has any objections, please let us know.
------------------ From: Denis Kirjanov <[email protected]> commit 9c33008412683eba91bce2dc4575f28c728b6bd1 upstream. The TX queues are allocated inside register_netdev. It doesn't make any sense to stop the queue before allocation. Signed-off-by: Denis Kirjanov <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> --- drivers/staging/rt2860/rt_main_dev.c | 2 -- 1 file changed, 2 deletions(-) --- a/drivers/staging/rt2860/rt_main_dev.c +++ b/drivers/staging/rt2860/rt_main_dev.c @@ -483,8 +483,6 @@ struct net_device *RtmpPhyNetDevInit(str net_dev->ml_priv = (void *)pAd; pAd->net_dev = net_dev; - netif_stop_queue(net_dev); - return net_dev; } _______________________________________________ stable mailing list [email protected] http://linux.kernel.org/mailman/listinfo/stable
