diff options
author | mav <mav@FreeBSD.org> | 2016-10-29 08:55:56 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2016-10-29 08:55:56 +0000 |
commit | 9e5cbc784b00f68c9ca71fdabd4b7deacfc6b34e (patch) | |
tree | d06612560a3b1f94c2648b551a33b09e3ec4df84 /sys/cddl | |
parent | f88c57db42d990be2250e711088d36a635ed68c3 (diff) | |
download | FreeBSD-src-9e5cbc784b00f68c9ca71fdabd4b7deacfc6b34e.zip FreeBSD-src-9e5cbc784b00f68c9ca71fdabd4b7deacfc6b34e.tar.gz |
MFC r306456: Add #ifdef _KERNEL around send_holes_without_birth_time sysctl.
Diffstat (limited to 'sys/cddl')
-rw-r--r-- | sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c index a137214..fcd704f 100644 --- a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c +++ b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c @@ -42,9 +42,11 @@ int32_t zfs_pd_bytes_max = 50 * 1024 * 1024; /* 50MB */ boolean_t send_holes_without_birth_time = B_TRUE; +#ifdef _KERNEL SYSCTL_DECL(_vfs_zfs); SYSCTL_UINT(_vfs_zfs, OID_AUTO, send_holes_without_birth_time, CTLFLAG_RWTUN, &send_holes_without_birth_time, 0, "Send holes without birth time"); +#endif typedef struct prefetch_data { kmutex_t pd_mtx; |