* [net-next-2.6 PATCH] e1000e: do not modify tx queue len on link speed change
@ 2010-03-03 14:31 franco
2010-03-04 8:41 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: franco @ 2010-03-03 14:31 UTC (permalink / raw)
To: Brandeburg, Jesse; +Cc: Netdev, Allan, Bruce W
e1000e would try to set appropriate values of tx_queue_len for
negotiated
link speeds overwriting the already set configuration of tx_queue_len in
the process. This removes all lines touching tx_queue_len from the
driver.
Signed-off-by: Franco Fichtner <franco@lastsummer.de>
---
drivers/net/e1000e/netdev.c | 11 +----------
1 files changed, 1 insertions(+), 10 deletions(-)
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c
index 88d54d3..e1cceb6 100644
--- a/drivers/net/e1000e/netdev.c
+++ b/drivers/net/e1000e/netdev.c
@@ -2289,8 +2289,6 @@ static void e1000_configure_tx(struct
e1000_adapter *adapter)
ew32(TCTL, tctl);
e1000e_config_collision_dist(hw);
-
- adapter->tx_queue_len = adapter->netdev->tx_queue_len;
}
/**
@@ -2877,7 +2875,6 @@ void e1000e_down(struct e1000_adapter *adapter)
del_timer_sync(&adapter->watchdog_timer);
del_timer_sync(&adapter->phy_info_timer);
- netdev->tx_queue_len = adapter->tx_queue_len;
netif_carrier_off(netdev);
adapter->link_speed = 0;
adapter->link_duplex = 0;
@@ -3588,21 +3585,15 @@ static void e1000_watchdog_task(struct
work_struct *work)
"link gets many collisions.\n");
}
- /*
- * tweak tx_queue_len according to speed/duplex
- * and adjust the timeout factor
- */
- netdev->tx_queue_len = adapter->tx_queue_len;
+ /* adjust timeout factor according to speed/duplex */
adapter->tx_timeout_factor = 1;
switch (adapter->link_speed) {
case SPEED_10:
txb2b = 0;
- netdev->tx_queue_len = 10;
adapter->tx_timeout_factor = 16;
break;
case SPEED_100:
txb2b = 0;
- netdev->tx_queue_len = 100;
adapter->tx_timeout_factor = 10;
break;
}
--
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [net-next-2.6 PATCH] e1000e: do not modify tx queue len on link speed change
2010-03-03 14:31 [net-next-2.6 PATCH] e1000e: do not modify tx queue len on link speed change franco
@ 2010-03-04 8:41 ` David Miller
2010-03-04 14:41 ` Jeff Kirsher
0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2010-03-04 8:41 UTC (permalink / raw)
To: franco; +Cc: Brandeburg, jesse.brandeburg, netdev, Allan, bruce.w.allan
From: franco@lastsummer.de
Date: Wed, 3 Mar 2010 15:31:37 +0100 (CET)
> e1000e would try to set appropriate values of tx_queue_len for
> negotiated
> link speeds overwriting the already set configuration of tx_queue_len in
> the process. This removes all lines touching tx_queue_len from the
> driver.
>
> Signed-off-by: Franco Fichtner <franco@lastsummer.de>
Intel folks, you got this?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Re: [net-next-2.6 PATCH] e1000e: do not modify tx queue len on link speed change
2010-03-04 8:41 ` David Miller
@ 2010-03-04 14:41 ` Jeff Kirsher
0 siblings, 0 replies; 3+ messages in thread
From: Jeff Kirsher @ 2010-03-04 14:41 UTC (permalink / raw)
To: David Miller
Cc: franco, Brandeburg, jesse.brandeburg, netdev, Allan,
bruce.w.allan
On Thu, Mar 4, 2010 at 00:41, David Miller <davem@davemloft.net> wrote:
> From: franco@lastsummer.de
> Date: Wed, 3 Mar 2010 15:31:37 +0100 (CET)
>
>> e1000e would try to set appropriate values of tx_queue_len for
>> negotiated
>> link speeds overwriting the already set configuration of tx_queue_len in
>> the process. This removes all lines touching tx_queue_len from the
>> driver.
>>
>> Signed-off-by: Franco Fichtner <franco@lastsummer.de>
>
> Intel folks, you got this?
Yes, I have added it to my queue of patches. Sorry for the delayed response.
--
Cheers,
Jeff
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-03-04 14:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-03 14:31 [net-next-2.6 PATCH] e1000e: do not modify tx queue len on link speed change franco
2010-03-04 8:41 ` David Miller
2010-03-04 14:41 ` Jeff Kirsher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).