From 96f6d1977ad30a6170e1eb85ce4a8d8060562a42 Mon Sep 17 00:00:00 2001 From: t_jeang Date: Tue, 6 Jan 2009 12:05:58 +0000 Subject: [PATCH] imported patch bnx2-tune-interrupt-load --- drivers/net/bnx2.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c index bf6158c3..bfd1370d 100644 --- a/drivers/net/bnx2.c +++ b/drivers/net/bnx2.c @@ -8195,15 +8195,15 @@ bnx2_init_board(struct pci_dev *pdev, struct net_device *dev) bp->rx_csum = 1; - bp->tx_quick_cons_trip_int = 20; - bp->tx_quick_cons_trip = 20; - bp->tx_ticks_int = 80; - bp->tx_ticks = 80; - - bp->rx_quick_cons_trip_int = 6; - bp->rx_quick_cons_trip = 6; - bp->rx_ticks_int = 18; - bp->rx_ticks = 18; + bp->tx_quick_cons_trip_int = 64; + bp->tx_quick_cons_trip = 64; + bp->tx_ticks_int = 1000; + bp->tx_ticks = 1000; + + bp->rx_quick_cons_trip_int = 12; + bp->rx_quick_cons_trip = 12; + bp->rx_ticks_int = 150; + bp->rx_ticks = 150; bp->stats_ticks = USEC_PER_SEC & BNX2_HC_STATS_TICKS_HC_STAT_TICKS; -- 2.39.5