Skip to content

Commit 91bd12d

Browse files
authored
zfs(4): remove "experimental" from zfs_bclone_enabled
I think we've done enough experiments. Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Alexander Motin <mav@FreeBSD.org> Reviewed-by: George Melikov <mail@gmelikov.ru> Signed-off-by: Rob Norris <robn@despairlabs.com> Closes openzfs#16189 Closes openzfs#16712
1 parent 1c7d4b4 commit 91bd12d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

man/man4/zfs.4

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
.\"
1919
.\" Copyright (c) 2024, Klara, Inc.
2020
.\"
21-
.Dd October 2, 2024
21+
.Dd November 1, 2024
2222
.Dt ZFS 4
2323
.Os
2424
.
@@ -1333,9 +1333,10 @@ results in vector instructions
13331333
from the respective CPU instruction set being used.
13341334
.
13351335
.It Sy zfs_bclone_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
1336-
Enable the experimental block cloning feature.
1336+
Enables access to the block cloning feature.
13371337
If this setting is 0, then even if feature@block_cloning is enabled,
1338-
attempts to clone blocks will act as though the feature is disabled.
1338+
using functions and system calls that attempt to clone blocks will act as
1339+
though the feature is disabled.
13391340
.
13401341
.It Sy zfs_bclone_wait_dirty Ns = Ns Sy 0 Ns | Ns 1 Pq int
13411342
When set to 1 the FICLONE and FICLONERANGE ioctls wait for dirty data to be

module/zfs/zfs_vnops.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
#include <sys/zfs_znode.h>
5959

6060
/*
61-
* Enable the experimental block cloning feature. If this setting is 0, then
62-
* even if feature@block_cloning is enabled, attempts to clone blocks will act
63-
* as though the feature is disabled.
61+
* Enables access to the block cloning feature. If this setting is 0, then even
62+
* if feature@block_cloning is enabled, using functions and system calls that
63+
* attempt to clone blocks will act as though the feature is disabled.
6464
*/
6565
int zfs_bclone_enabled = 1;
6666

0 commit comments

Comments
 (0)