Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=593ff56ef2a23ed3a66ee87d9c9b33044b9fb193
Commit:     593ff56ef2a23ed3a66ee87d9c9b33044b9fb193
Parent:     50626297b1beb0a29c0f174be39f36485533216c
Author:     Dale Farnsworth <[EMAIL PROTECTED]>
AuthorDate: Mon Oct 1 16:02:18 2007 -0700
Committer:  Jeff Garzik <[EMAIL PROTECTED]>
CommitDate: Tue Oct 2 12:55:10 2007 -0400

    mv643xx_eth: Do not modify struct netdev tx_queue_len
    
    This driver erroneously zeros dev->tx_queue_len, since
    mp->tx_ring_size has not yet been initialized.  Actually,
    the driver shouldn't modify tx_queue_len at all and should
    leave the value set by alloc_etherdev(), currently 1000.
    
    Signed-off-by: Dale Farnsworth <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
---
 drivers/net/mv643xx_eth.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c
index 34288fe..3153356 100644
--- a/drivers/net/mv643xx_eth.c
+++ b/drivers/net/mv643xx_eth.c
@@ -1357,7 +1357,6 @@ static int mv643xx_eth_probe(struct platform_device *pdev)
 #endif
 
        dev->watchdog_timeo = 2 * HZ;
-       dev->tx_queue_len = mp->tx_ring_size;
        dev->base_addr = 0;
        dev->change_mtu = mv643xx_eth_change_mtu;
        dev->do_ioctl = mv643xx_eth_do_ioctl;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to