]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - drivers/net/ixgbe/ixgbe_ethtool.c
ixgbe: do not stop tx queues in ixgbe_set_tso
[net-next-2.6.git] / drivers / net / ixgbe / ixgbe_ethtool.c
index 0d234346a4ea09fa109624dcd0dead981d60c2d1..7949a446e4c7673f2587ec6da3b33c1a06574cae 100644 (file)
@@ -441,10 +441,8 @@ static int ixgbe_set_tso(struct net_device *netdev, u32 data)
                netdev->features |= NETIF_F_TSO;
                netdev->features |= NETIF_F_TSO6;
        } else {
-               netif_tx_stop_all_queues(netdev);
                netdev->features &= ~NETIF_F_TSO;
                netdev->features &= ~NETIF_F_TSO6;
-               netif_tx_start_all_queues(netdev);
        }
        return 0;
 }