diff options
author | Brian Behlendorf <[email protected]> | 2016-12-08 13:57:42 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2016-12-08 13:57:42 -0700 |
commit | 27f2b90d3e365dbe20d736792b390674e8236b17 (patch) | |
tree | 9180138d201af6b8ebbfccd5a0a6166fbdd34818 /module/zfs | |
parent | e8a2014436147d07442e52f854e197082748fca6 (diff) |
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 [email protected]
Reviewed-by: Olaf Faaland <[email protected]>
Signed-off-by: Brian Behlendorf [email protected]
Reverts #5335
Closes #5289
Closes #5457
Diffstat (limited to 'module/zfs')
-rw-r--r-- | module/zfs/zio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/zio.c b/module/zfs/zio.c index b608ed6ea..e9d08093e 100644 --- a/module/zfs/zio.c +++ b/module/zfs/zio.c @@ -57,7 +57,7 @@ const char *zio_type_name[ZIO_TYPES] = { "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; /* * ========================================================================== |