passthrough_example: make parallel_direct_writes more clearly
authoryangyun <yangyun50@huawei.com>
Fri, 23 Feb 2024 03:06:08 +0000 (11:06 +0800)
committeryangyun <yangyun50@huawei.com>
Fri, 23 Feb 2024 07:01:29 +0000 (15:01 +0800)
Move the parallel_direct_writes enable action to the init function in high level API,
it is more recommended just like commit 8ee553dac. Besides, add some comments to show
that the feature parallel_direct_writes is depend on the feature direct_io (refer to
link: https://lwn.net/ml/linux-fsdevel/
20230918150313.3845114-1-bschubert@ddn.com for the reason).

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

index dd385c50c7b8684094a85d96f13b9714210a976a..5a0d6d70bac73fed43656f096304a1e778e93be5 100644 (file)
@@ -59,6 +59,13 @@ static void *xmp_init(struct fuse_conn_info *conn,
        (void) conn;
        cfg->use_ino = 1;
 
+       /* parallel_direct_writes feature depends on direct_io features.
+          To make parallel_direct_writes valid, need either set cfg->direct_io
+          in current function (recommended in high level API) or set fi->direct_io
+          in xmp_create() or xmp_open(). */
+       // cfg->direct_io = 1;
+          cfg->parallel_direct_writes = 1;
+
        /* Pick up changes from lower filesystem right away. This is
           also necessary for better hardlink support. When the kernel
           calls the unlink() handler, it does not know the inode of
@@ -285,7 +292,6 @@ static int xmp_create(const char *path, mode_t mode,
                return -errno;
 
        fi->fh = res;
-       fi->parallel_direct_writes = 1;
        return 0;
 }
 
@@ -298,7 +304,6 @@ 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 51df3be663c00fa3671915db9793001408ead1bc..ec426a8b485171d667824b8d2bcf9fc3d59929fa 100644 (file)
@@ -54,6 +54,13 @@ static void *xmp_init(struct fuse_conn_info *conn,
        cfg->use_ino = 1;
        cfg->nullpath_ok = 1;
 
+       /* parallel_direct_writes feature depends on direct_io features.
+          To make parallel_direct_writes valid, need either set cfg->direct_io
+          in current function (recommended in high level API) or set fi->direct_io
+          in xmp_create() or xmp_open(). */
+       // cfg->direct_io = 1;
+       cfg->parallel_direct_writes = 1;
+
        /* Pick up changes from lower filesystem right away. This is
           also necessary for better hardlink support. When the kernel
           calls the unlink() handler, it does not know the inode of
@@ -366,7 +373,6 @@ 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;
 }
 
@@ -379,7 +385,6 @@ 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 66fe6f827101d35fdfea76410c74d27f5ef46bb0..9b17de07dbf0738681a8a0c9d93481f21ed964e2 100644 (file)
@@ -840,6 +840,9 @@ static void sfs_create(fuse_req_t req, fuse_ino_t parent, const char *name,
     if (fs.direct_io)
            fi->direct_io = 1;
 
+    /* parallel_direct_writes feature depends on direct_io features.
+       To make parallel_direct_writes valid, need set fi->direct_io
+       in current function. */
     fi->parallel_direct_writes = 1;
 
     Inode& inode = get_inode(e.ino);
@@ -902,6 +905,9 @@ static void sfs_open(fuse_req_t req, fuse_ino_t ino, fuse_file_info *fi) {
     if (fs.direct_io)
            fi->direct_io = 1;
 
+    /* parallel_direct_writes feature depends on direct_io features.
+       To make parallel_direct_writes valid, need set fi->direct_io
+       in current function. */
     fi->parallel_direct_writes = 1;
 
     fi->fh = fd;
index afac6eaa3a004d9c95b4a1d64bcf225d11068474..b15725f49d097ed0c0d9be9174ae7e63dfa1cfbd 100644 (file)
@@ -775,6 +775,9 @@ 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;
 
+       /* parallel_direct_writes feature depends on direct_io features.
+          To make parallel_direct_writes valid, need set fi->direct_io
+          in current function. */
        fi->parallel_direct_writes = 1;
 
        err = lo_do_lookup(req, parent, name, &e);
@@ -834,6 +837,9 @@ static void lo_open(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi)
        else if (lo->cache == CACHE_ALWAYS)
                fi->keep_cache = 1;
 
+       /* parallel_direct_writes feature depends on direct_io features.
+          To make parallel_direct_writes valid, need set fi->direct_io
+          in current function. */
        fi->parallel_direct_writes = 1;
 
        fuse_reply_open(req, fi);