From c2d84054b04ffb303118db10b963d3106e21ab88 Mon Sep 17 00:00:00 2001 From: Sepherosa Ziehau Date: Sat, 30 Jun 2012 11:25:54 +0800 Subject: [PATCH] igb: Reduce MSI/legacy interrupt rate limit to 6000 Should work well enough as far as I have tested. --- sys/dev/netif/igb/if_igb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/netif/igb/if_igb.h b/sys/dev/netif/igb/if_igb.h index 374d4676a1..2cc0cb097e 100644 --- a/sys/dev/netif/igb/if_igb.h +++ b/sys/dev/netif/igb/if_igb.h @@ -144,7 +144,7 @@ #define MAX_NUM_MULTICAST_ADDRESSES 128 #define IGB_FC_PAUSE_TIME 0x0680 -#define IGB_INTR_RATE 10000 +#define IGB_INTR_RATE 6000 #define IGB_MSIX_RX_RATE 6000 #define IGB_MSIX_TX_RATE 4000 -- 2.41.0