Enabled parallel direct IO writes for passthrough examples
authorBernd Schubert <bschubert@ddn.com>
Tue, 10 Oct 2023 11:18:36 +0000 (13:18 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 11 Oct 2023 07:39:11 +0000 (08:39 +0100)
All these passthrough examples don't need writes to be serialized.

Actually, most file systems probably handle non serialized parallel
direct writes - the FOPEN_PARALLEL_DIRECT_WRITES flag is just
to avoid a regression for those file system that rely on serialized
DIO writes in fuse kernel. Passthrough file system forward the IO
to another file system, which actually handles that internally -
serialized in fuser kernel is not needed.

example/passthrough.c
example/passthrough_fh.c
example/passthrough_hp.cc
example/passthrough_ll.c

index 5963d5895799475c86a04a1ea5626b9e2b03ff5e..dd385c50c7b8684094a85d96f13b9714210a976a 100644 (file)
@@ -285,6 +285,7 @@ static int xmp_create(const char *path, mode_t mode,
                return -errno;
 
        fi->fh = res;
+       fi->parallel_direct_writes = 1;
        return 0;
 }
 
@@ -297,6 +298,7 @@ static int xmp_open(const char *path, struct fuse_file_info *fi)
                return -errno;
 
        fi->fh = res;
+       fi->parallel_direct_writes = 1;
        return 0;
 }
 
index bc027941b8c4540a2eb521ffb8e9897889331db8..51df3be663c00fa3671915db9793001408ead1bc 100644 (file)
@@ -366,6 +366,7 @@ static int xmp_create(const char *path, mode_t mode, struct fuse_file_info *fi)
                return -errno;
 
        fi->fh = fd;
+       fi->parallel_direct_writes = 1;
        return 0;
 }
 
@@ -378,6 +379,7 @@ static int xmp_open(const char *path, struct fuse_file_info *fi)
                return -errno;
 
        fi->fh = fd;
+       fi->parallel_direct_writes = 1;
        return 0;
 }
 
index 9ee6fb117169cc4059f07d0766aad4eecd95f182..1ee5352bc192f36e78214da4b4c309990f48cd33 100644 (file)
@@ -836,6 +836,8 @@ static void sfs_create(fuse_req_t req, fuse_ino_t parent, const char *name,
     if (fs.direct_io)
            fi->direct_io = 1;
 
+    fi->parallel_direct_writes = 1;
+
     Inode& inode = get_inode(e.ino);
     lock_guard<mutex> g {inode.m};
     inode.nopen++;
@@ -896,6 +898,8 @@ static void sfs_open(fuse_req_t req, fuse_ino_t ino, fuse_file_info *fi) {
     if (fs.direct_io)
            fi->direct_io = 1;
 
+    fi->parallel_direct_writes = 1;
+
     fi->fh = fd;
     fuse_reply_open(req, fi);
 }
index 070cef1b364c55f1ebab3ba835d7ef5b56b1f15b..afac6eaa3a004d9c95b4a1d64bcf225d11068474 100644 (file)
@@ -775,6 +775,8 @@ static void lo_create(fuse_req_t req, fuse_ino_t parent, const char *name,
        else if (lo->cache == CACHE_ALWAYS)
                fi->keep_cache = 1;
 
+       fi->parallel_direct_writes = 1;
+
        err = lo_do_lookup(req, parent, name, &e);
        if (err)
                fuse_reply_err(req, err);
@@ -831,6 +833,9 @@ static void lo_open(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi)
                fi->direct_io = 1;
        else if (lo->cache == CACHE_ALWAYS)
                fi->keep_cache = 1;
+
+       fi->parallel_direct_writes = 1;
+
        fuse_reply_open(req, fi);
 }