From 751a69a5e4cb285a9b2c21f4665c4bde595859a5 Mon Sep 17 00:00:00 2001 From: t_jeang Date: Tue, 6 Jan 2009 12:05:57 +0000 Subject: [PATCH] imported patch tg3-tune-interrupt-load --- drivers/net/tg3.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index c937fe9a..9945fe19 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c @@ -13523,10 +13523,10 @@ static void __devinit tg3_init_coal(struct tg3 *tp) memset(ec, 0, sizeof(*ec)); ec->cmd = ETHTOOL_GCOALESCE; - ec->rx_coalesce_usecs = LOW_RXCOL_TICKS; - ec->tx_coalesce_usecs = LOW_TXCOL_TICKS; - ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES; - ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES; + ec->rx_coalesce_usecs = DEFAULT_RXCOL_TICKS; + ec->tx_coalesce_usecs = DEFAULT_TXCOL_TICKS; + ec->rx_max_coalesced_frames = DEFAULT_RXMAX_FRAMES; + ec->tx_max_coalesced_frames = DEFAULT_TXMAX_FRAMES; ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT; ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT; ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT; -- 2.39.5