aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse.c
diff options
context:
space:
mode:
authorAmir Goldstein <amir73il@gmail.com>2021-12-05 18:29:05 +0200
committerAmir Goldstein <amir73il@gmail.com>2022-01-03 14:55:34 +0200
commitdad15aee26835240d72188179ba177a0bbafe659 (patch)
treebc03a4652249f38d0236a337c377b952aef38e4b /lib/fuse.c
parent1b498ac9b341e086562f54cc49bf035e19a94e1d (diff)
downloadlibfuse-dad15aee26835240d72188179ba177a0bbafe659.tar.gz
Add no_rofd_flush mount option
To disable flush for read-only fd. Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Diffstat (limited to 'lib/fuse.c')
-rw-r--r--lib/fuse.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index a95d7c1..cc5bb14 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -3272,6 +3272,10 @@ static void fuse_lib_open(fuse_req_t req, fuse_ino_t ino,
if (f->conf.auto_cache)
open_auto_cache(f, ino, path, fi);
+
+ if (f->conf.no_rofd_flush &&
+ (fi->flags & O_ACCMODE) == O_RDONLY)
+ fi->noflush = 1;
}
fuse_finish_interrupt(f, req, &d);
}
@@ -4653,6 +4657,7 @@ static const struct fuse_opt fuse_lib_opts[] = {
FUSE_LIB_OPT("kernel_cache", kernel_cache, 1),
FUSE_LIB_OPT("auto_cache", auto_cache, 1),
FUSE_LIB_OPT("noauto_cache", auto_cache, 0),
+ FUSE_LIB_OPT("no_rofd_flush", no_rofd_flush, 1),
FUSE_LIB_OPT("umask=", set_mode, 1),
FUSE_LIB_OPT("umask=%o", umask, 0),
FUSE_LIB_OPT("uid=", set_uid, 1),
@@ -4705,6 +4710,7 @@ void fuse_lib_help(struct fuse_args *args)
printf(
" -o kernel_cache cache files in kernel\n"
" -o [no]auto_cache enable caching based on modification times (off)\n"
+" -o no_rofd_flush disable flushing of read-only fd on close (off)\n"
" -o umask=M set file permissions (octal)\n"
" -o uid=N set file owner\n"
" -o gid=N set file group\n"