diff options
author | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-02-26 09:48:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 09:48:04 +0100 |
commit | f557f3677586d4e22a6208e5dc2ceea4e1999462 (patch) | |
tree | 1d907e2ee1f016f4fa379707782bab3e399a0d8f | |
parent | 74b1df2e84e836a1710561f52075d51f20cd5c78 (diff) | |
parent | c45863318889fa6344534537c7ef91a37b3fba32 (diff) | |
download | libfuse-f557f3677586d4e22a6208e5dc2ceea4e1999462.tar.gz |
Merge pull request #888 from yangyun50/master
passthrough examples: enable direct io when open has flag: O_DIRECT
-rw-r--r-- | example/passthrough.c | 17 | ||||
-rw-r--r-- | example/passthrough_fh.c | 17 | ||||
-rw-r--r-- | example/passthrough_hp.cc | 12 | ||||
-rw-r--r-- | example/passthrough_ll.c | 12 |
4 files changed, 54 insertions, 4 deletions
diff --git a/example/passthrough.c b/example/passthrough.c index dd385c5..30a8ad5 100644 --- a/example/passthrough.c +++ b/example/passthrough.c @@ -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; } @@ -297,8 +303,15 @@ static int xmp_open(const char *path, struct fuse_file_info *fi) if (res == -1) return -errno; + /* Enable direct_io when open has flags O_DIRECT to enjoy the feature + parallel_direct_writes (i.e., to get a shared lock, not exclusive lock, + for writes to the same file). */ + if (fi->flags & O_DIRECT) { + fi->direct_io = 1; + fi->parallel_direct_writes = 1; + } + fi->fh = res; - fi->parallel_direct_writes = 1; return 0; } diff --git a/example/passthrough_fh.c b/example/passthrough_fh.c index 51df3be..701d59e 100644 --- a/example/passthrough_fh.c +++ b/example/passthrough_fh.c @@ -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; } @@ -378,8 +384,15 @@ static int xmp_open(const char *path, struct fuse_file_info *fi) if (fd == -1) return -errno; + /* Enable direct_io when open has flags O_DIRECT to enjoy the feature + parallel_direct_writes (i.e., to get a shared lock, not exclusive lock, + for writes to the same file). */ + if (fi->flags & O_DIRECT) { + fi->direct_io = 1; + fi->parallel_direct_writes = 1; + } + fi->fh = fd; - fi->parallel_direct_writes = 1; return 0; } diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc index 66fe6f8..7f83a7b 100644 --- a/example/passthrough_hp.cc +++ b/example/passthrough_hp.cc @@ -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,15 @@ static void sfs_open(fuse_req_t req, fuse_ino_t ino, fuse_file_info *fi) { if (fs.direct_io) fi->direct_io = 1; + /* Enable direct_io when open has flags O_DIRECT to enjoy the feature + parallel_direct_writes (i.e., to get a shared lock, not exclusive lock, + for writes to the same file). */ + if (fi->flags & O_DIRECT) + 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; diff --git a/example/passthrough_ll.c b/example/passthrough_ll.c index afac6ea..46cc8e0 100644 --- a/example/passthrough_ll.c +++ b/example/passthrough_ll.c @@ -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,15 @@ 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; + /* Enable direct_io when open has flags O_DIRECT to enjoy the feature + parallel_direct_writes (i.e., to get a shared lock, not exclusive lock, + for writes to the same file in the kernel). */ + if (fi->flags & O_DIRECT) + 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; fuse_reply_open(req, fi); |