diff options
author | Ryan Moeller <[email protected]> | 2021-03-11 22:23:24 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-11 19:23:24 -0800 |
commit | 35aa9dc6dfddb319bed027e1eebb17ff226bd2bc (patch) | |
tree | 5f5895db4cbf1b54050287f05acd2b7589d1619d /module | |
parent | c94d648b1c2726882c57cb4e48bc61d74c881418 (diff) |
FreeBSD: Fix scope of deadman tunables
A few deadman tunables ended up in the wrong sysctl node.
Move them to vfs.zfs.deadman.*
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Alexander Motin <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #11715
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/spa_misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/spa_misc.c b/module/zfs/spa_misc.c index 0dacf9027..1a2e5abc5 100644 --- a/module/zfs/spa_misc.c +++ b/module/zfs/spa_misc.c @@ -2923,10 +2923,10 @@ ZFS_MODULE_PARAM(zfs, zfs_, recover, INT, ZMOD_RW, ZFS_MODULE_PARAM(zfs, zfs_, free_leak_on_eio, INT, ZMOD_RW, "Set to ignore IO errors during free and permanently leak the space"); -ZFS_MODULE_PARAM(zfs, zfs_, deadman_checktime_ms, ULONG, ZMOD_RW, +ZFS_MODULE_PARAM(zfs_deadman, zfs_deadman_, checktime_ms, ULONG, ZMOD_RW, "Dead I/O check interval in milliseconds"); -ZFS_MODULE_PARAM(zfs, zfs_, deadman_enabled, INT, ZMOD_RW, +ZFS_MODULE_PARAM(zfs_deadman, zfs_deadman_, enabled, INT, ZMOD_RW, "Enable deadman timer"); ZFS_MODULE_PARAM(zfs_spa, spa_, asize_inflation, INT, ZMOD_RW, |