diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2008-07-18 07:33:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-18 07:33:03 -0400 |
commit | d55b53fff0c2ddb639dca04c3f5a0854f292d982 (patch) | |
tree | 39164a0c3a820f0767f2ad98c828a36c35c9b1da /drivers/net/ixgbe | |
parent | b6fcbdb4f283f7ba67cec3cda6be23da8e959031 (diff) |
igb/ixgbe/e1000e: resolve tx multiqueue bug
With the recent changes to tx mutiqueue, igb/ixgbe/e1000e was not calling
netif_tx_start_all_queues() before calling netif_tx_wake_all_queues().
This causes an issue during loading of the driver.
In addition, updated e1000e to use the updated tx mutliqueue api.
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index 6af8fb5c4b5f..be7b723c924f 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
@@ -2765,6 +2765,8 @@ static int ixgbe_open(struct net_device *netdev) | |||
2765 | if (err) | 2765 | if (err) |
2766 | goto err_up; | 2766 | goto err_up; |
2767 | 2767 | ||
2768 | netif_tx_start_all_queues(netdev); | ||
2769 | |||
2768 | return 0; | 2770 | return 0; |
2769 | 2771 | ||
2770 | err_up: | 2772 | err_up: |