mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
e1000e: Set InterruptThrottleRate to default when invalid value used
During module load, seting the InterruptThrottleRate parameter to an invalid value would result in the itr/itr_setting pair being set to unexpected values which would result in poor performance. Signed-off-by: Bruce Allan <bruce.w.allan@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
parent
56e1f82968
commit
2d06cad1a5
1 changed files with 19 additions and 4 deletions
|
@ -327,11 +327,26 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)
|
||||||
e1000_validate_option(&adapter->itr, &opt,
|
e1000_validate_option(&adapter->itr, &opt,
|
||||||
adapter);
|
adapter);
|
||||||
/*
|
/*
|
||||||
* save the setting, because the dynamic bits
|
* Save the setting, because the dynamic bits
|
||||||
* change itr. clear the lower two bits
|
* change itr.
|
||||||
* because they are used as control
|
|
||||||
*/
|
*/
|
||||||
adapter->itr_setting = adapter->itr & ~3;
|
if (e1000_validate_option(&adapter->itr, &opt,
|
||||||
|
adapter) &&
|
||||||
|
(adapter->itr == 3)) {
|
||||||
|
/*
|
||||||
|
* In case of invalid user value,
|
||||||
|
* default to conservative mode.
|
||||||
|
*/
|
||||||
|
adapter->itr_setting = adapter->itr;
|
||||||
|
adapter->itr = 20000;
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* Clear the lower two bits because
|
||||||
|
* they are used as control.
|
||||||
|
*/
|
||||||
|
adapter->itr_setting =
|
||||||
|
adapter->itr & ~3;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue