Add zfs_multihost_interval tunable handler for FreeBSD

This tunable required a handler to be implemented for
ZFS_MODULE_PARAM_CALL.

Add the handler so the tunable can be declared in common code.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #10490
This commit is contained in:
Ryan Moeller
2020-06-23 16:32:42 -04:00
committed by GitHub
parent 2451a55368
commit 9192f27c1d
6 changed files with 27 additions and 7 deletions
+1 -6
View File
@@ -25,7 +25,7 @@
#include <sys/zfs_context.h>
#include <sys/mmp.h>
static int
int
param_set_multihost_interval(const char *val, zfs_kernel_param_t *kp)
{
int ret;
@@ -39,8 +39,3 @@ param_set_multihost_interval(const char *val, zfs_kernel_param_t *kp)
return (ret);
}
module_param_call(zfs_multihost_interval, param_set_multihost_interval,
param_get_ulong, &zfs_multihost_interval, 0644);
MODULE_PARM_DESC(zfs_multihost_interval,
"Milliseconds between mmp writes to each leaf");