Re: [PATCH] mv643xx_eth: Do not modify struct netdev tx_queue_len

2007-10-02 Thread Jeff Garzik
Dale Farnsworth wrote: From: Dale Farnsworth <[EMAIL PROTECTED]> 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. S

[PATCH] mv643xx_eth: Do not modify struct netdev tx_queue_len

2007-10-01 Thread Dale Farnsworth
From: Dale Farnsworth <[EMAIL PROTECTED]> 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 Farnsw