diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2017-09-20 17:47:52 +0100 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2017-09-20 17:56:44 +0100 |
commit | d193b19a8f60e8830f0aa5696d2bf3d4fd8d7930 (patch) | |
tree | 7db0e523446006fd5630c2ce9872934b2f7f3bb9 /sshfs.rst | |
parent | 949d76d1a2c508f034f23c36d34400204698d952 (diff) | |
download | sshfs-d193b19a8f60e8830f0aa5696d2bf3d4fd8d7930.tar sshfs-d193b19a8f60e8830f0aa5696d2bf3d4fd8d7930.tar.gz sshfs-d193b19a8f60e8830f0aa5696d2bf3d4fd8d7930.tar.bz2 sshfs-d193b19a8f60e8830f0aa5696d2bf3d4fd8d7930.zip |
Dropped support for writeback caching
As of kernel 4.14, the FUSE module's + writeback implementation is not
compatible with network filesystems, and there are no imminent plans
to change that.
For more details, see
https://marc.info/?l=fuse-devel&m=150592103107662&w=2 or
As a consequence, the -o unreliable_append option has become obsolete
as well.
Fixes: #93
Fixes: #88
Fixes: #81
Diffstat (limited to 'sshfs.rst')
-rw-r--r-- | sshfs.rst | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -175,21 +175,6 @@ Options -o password_stdin read password from stdin (only for pam_mount!) --o writeback_cache=BOOL - Enables (*yes*) or disables (*no*) the FUSE writeback cache. When - writeback caching is enabled, write operations are not immediately - sent to the SSH server but first collected and merged locally. This - can significantly improve performance. However, if the file is - changed on the server while there are unsent changes on the client, - data corruption is likely to result. - --o unreliable_append - When writeback caching is enabled, SSHFS cannot reliably support - the ``O_APPEND`` open flag and thus signals an error on open. To - enable support for unreliable ``O_APPEND`` (which may overwrite - data if the file changes on the server at a bad time), mount the - file system with ``-o unreliable_append``. - -o dir_cache=BOOL Enables (*yes*) or disables (*no*) the SSHFS directory cache. The directory cache holds the names of directory entries. Enabling it |