Fix a cut/paste bug which prevents us from setting the average

latency tunable.

Reviewed by:	jfv
MFC after:	1 day
This commit is contained in:
George V. Neville-Neil 2009-01-13 00:10:50 +00:00
parent 0bf6acb6bd
commit 6df8576005
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=187123

View File

@ -279,7 +279,7 @@ TUNABLE_INT("hw.igb.enable_aim", &igb_enable_aim);
static int igb_low_latency = IGB_LOW_LATENCY;
TUNABLE_INT("hw.igb.low_latency", &igb_low_latency);
static int igb_ave_latency = IGB_AVE_LATENCY;
TUNABLE_INT("hw.igb.ave_latency", &igb_low_latency);
TUNABLE_INT("hw.igb.ave_latency", &igb_ave_latency);
static int igb_bulk_latency = IGB_BULK_LATENCY;
TUNABLE_INT("hw.igb.bulk_latency", &igb_bulk_latency);