Disable ethernet flow control in if_fxp by default, in order to prevent
unexpected surprises when a system panics or is left in the debugger. Requested by: kris MFC after: 3 days
This commit is contained in:
parent
610ecfe035
commit
03edfff39a
@ -480,7 +480,7 @@ fxp_attach(device_t dev)
|
||||
*/
|
||||
sc->tunable_int_delay = TUNABLE_INT_DELAY;
|
||||
sc->tunable_bundle_max = TUNABLE_BUNDLE_MAX;
|
||||
sc->tunable_noflow = 0;
|
||||
sc->tunable_noflow = 1;
|
||||
(void) resource_int_value(device_get_name(dev), device_get_unit(dev),
|
||||
"int_delay", &sc->tunable_int_delay);
|
||||
(void) resource_int_value(device_get_name(dev), device_get_unit(dev),
|
||||
|
Loading…
Reference in New Issue
Block a user