diff options
author | Günther Deschner <gd@samba.org> | 2020-11-24 15:38:41 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2020-12-02 14:49:18 +0000 |
commit | 585c49f21f7db686f479ce02b2ae647a313f1184 (patch) | |
tree | 27af87345ba806c28983b88ca9f760f05b8cc5d7 | |
parent | 587fa331f62f6bd36fdb8688c8d0734d02f07ee8 (diff) | |
download | samba-585c49f21f7db686f479ce02b2ae647a313f1184.tar.gz |
vfs_glusterfs: print exact cmdline for disabling write-behind translator
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14486
Guenther
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
Autobuild-User(master): Günther Deschner <gd@samba.org>
Autobuild-Date(master): Fri Nov 27 17:15:07 UTC 2020 on sn-devel-184
(cherry picked from commit 369c1d539837b70e94fe9d533d44860c8a9380a1)
Autobuild-User(v4-13-test): Karolin Seeger <kseeger@samba.org>
Autobuild-Date(v4-13-test): Wed Dec 2 14:49:18 UTC 2020 on sn-devel-184
-rw-r--r-- | docs-xml/manpages/vfs_glusterfs.8.xml | 6 | ||||
-rw-r--r-- | source3/modules/vfs_glusterfs.c | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/docs-xml/manpages/vfs_glusterfs.8.xml b/docs-xml/manpages/vfs_glusterfs.8.xml index ca6085a0595..d25135e14ac 100644 --- a/docs-xml/manpages/vfs_glusterfs.8.xml +++ b/docs-xml/manpages/vfs_glusterfs.8.xml @@ -179,10 +179,14 @@ translator and refuse to connect if detected. Please disable the write-behind translator for the GlusterFS volume to allow the plugin to connect to the volume. + The write-behind translator can easily be disabled via calling + <programlisting> + gluster volume set <volumename> performance.write-behind off + </programlisting> on the commandline. </para> <para> With GlusterFS versions >= 9, we silently bypass write-behind - translator during intial connect and failure is avoided. + translator during initial connect and failure is avoided. </para> </refsect1> diff --git a/source3/modules/vfs_glusterfs.c b/source3/modules/vfs_glusterfs.c index 17e945f7e78..10af7e131b2 100644 --- a/source3/modules/vfs_glusterfs.c +++ b/source3/modules/vfs_glusterfs.c @@ -345,9 +345,12 @@ static int check_for_write_behind_translator(TALLOC_CTX *mem_ctx, if (write_behind_present) { DBG_ERR("Write behind translator is enabled for " "volume (%s), refusing to connect! " - "Please check the vfs_glusterfs(8) manpage for " + "Please turn off the write behind translator by calling " + "'gluster volume set %s performance.write-behind off' " + "on the commandline. " + "Check the vfs_glusterfs(8) manpage for " "further details.\n", - volume); + volume, volume); return -1; } |