mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
0bf6acb6bd
commit
6df8576005
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue