-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rootfs,dom0-ztools: introduce etc/modprobe.d/zfs.conf
Get rid of the custom '000-mod-params' script, which handles setting of ZFS parameters using the sysfs, in a favor of the /etc/modprobe.d/zfs.conf generic mechanism of loading modules. Signed-off-by: Roman Penyaev <r.peniaev@gmail.com>
- Loading branch information
Showing
3 changed files
with
21 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
options zfs zfs_compressed_arc_enabled 0 | ||
options zfs zfs_vdev_min_auto_ashift 12 | ||
options zfs zvol_request_sync 0 | ||
options zfs zfs_vdev_aggregation_limit_non_rotating 1048576 | ||
options zfs zfs_vdev_async_write_active_min_dirty_percent 10 | ||
options zfs zfs_vdev_async_write_active_max_dirty_percent 30 | ||
options zfs zfs_delay_min_dirty_percent 40 | ||
options zfs zfs_delay_scale 800000 | ||
options zfs zfs_dirty_data_sync_percent 15 | ||
options zfs zfs_prefetch_disable 1 | ||
options zfs zfs_vdev_sync_read_min_active 35 | ||
options zfs zfs_vdev_sync_read_max_active 35 | ||
options zfs zfs_vdev_sync_write_min_active 35 | ||
options zfs zfs_vdev_sync_write_max_active 35 | ||
options zfs zfs_vdev_async_read_min_active 1 | ||
options zfs zfs_vdev_async_read_max_active 10 | ||
options zfs zfs_vdev_async_write_min_active 1 | ||
options zfs zfs_vdev_async_write_max_active 10 | ||
options zfs zfs_smoothing_scale 50000 | ||
options zfs zfs_smoothing_write 5 |