Revert "Disable zio_dva_throttle_enabled by default"
Enable zio_dva_throttle_enabled=1 by default. Subsequent testing has been unable to reproduce the suspected regression. Tested-by: kernelOfTruth kerneloftruth@gmail.com Reviewed-by: Olaf Faaland <faaland1@llnl.gov> Signed-off-by: Brian Behlendorf behlendorf1@llnl.gov Reverts #5335 Closes #5289 Closes #5457
This commit is contained in:
parent
e8a2014436
commit
27f2b90d3e
|
@ -1863,7 +1863,7 @@ Default value: \fB30,000\fR.
|
||||||
Throttle block allocations in the ZIO pipeline. This allows for
|
Throttle block allocations in the ZIO pipeline. This allows for
|
||||||
dynamic allocation distribution when devices are imbalanced.
|
dynamic allocation distribution when devices are imbalanced.
|
||||||
.sp
|
.sp
|
||||||
Default value: \fB0\fR.
|
Default value: \fB1\fR.
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
.sp
|
.sp
|
||||||
|
|
|
@ -57,7 +57,7 @@ const char *zio_type_name[ZIO_TYPES] = {
|
||||||
"z_null", "z_rd", "z_wr", "z_fr", "z_cl", "z_ioctl"
|
"z_null", "z_rd", "z_wr", "z_fr", "z_cl", "z_ioctl"
|
||||||
};
|
};
|
||||||
|
|
||||||
int zio_dva_throttle_enabled = B_FALSE;
|
int zio_dva_throttle_enabled = B_TRUE;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ==========================================================================
|
* ==========================================================================
|
||||||
|
|
Loading…
Reference in New Issue