From: "Darrick J. Wong" <djwong@kernel.org>
To: tytso@mit.edu
Cc: linux-ext4@vger.kernel.org
Subject: [PATCH 3/9] fuse2fs: rework fallocate file handle extraction
Date: Mon, 15 Sep 2025 16:59:50 -0700 [thread overview]
Message-ID: <175798064149.349283.559208645562467096.stgit@frogsfrogsfrogs> (raw)
In-Reply-To: <175798064057.349283.17144996472212778619.stgit@frogsfrogsfrogs>
From: Darrick J. Wong <djwong@kernel.org>
Move the context and file handle checking to op_fallocate so that we can
pass them to the alloc/punch/zero helpers. This eliminates redundant
checking in the zero_range path.
Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
---
misc/fuse2fs.c | 51 +++++++++++++++++++++++----------------------------
1 file changed, 23 insertions(+), 28 deletions(-)
diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c
index 178d0fd6e20263..5a33e161ae8f9d 100644
--- a/misc/fuse2fs.c
+++ b/misc/fuse2fs.c
@@ -4357,23 +4357,17 @@ static int op_bmap(const char *path, size_t blocksize EXT2FS_ATTR((unused)),
#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
# ifdef SUPPORT_FALLOCATE
-static int fallocate_helper(struct fuse_file_info *fp, int mode, off_t offset,
- off_t len)
+static int fuse2fs_allocate_range(struct fuse2fs *ff,
+ struct fuse2fs_file_handle *fh, int mode,
+ off_t offset, off_t len)
{
- struct fuse_context *ctxt = fuse_get_context();
- struct fuse2fs *ff = (struct fuse2fs *)ctxt->private_data;
- struct fuse2fs_file_handle *fh =
- (struct fuse2fs_file_handle *)(uintptr_t)fp->fh;
- ext2_filsys fs;
+ ext2_filsys fs = ff->fs;
struct ext2_inode_large inode;
blk64_t start, end;
__u64 fsize;
errcode_t err;
int flags;
- FUSE2FS_CHECK_CONTEXT(ff);
- FUSE2FS_CHECK_HANDLE(ff, fh);
- fs = ff->fs;
start = FUSE2FS_B_TO_FSBT(ff, offset);
end = FUSE2FS_B_TO_FSBT(ff, offset + len - 1);
dbg_printf(ff, "%s: ino=%d mode=0x%x start=%llu end=%llu\n", __func__,
@@ -4492,22 +4486,16 @@ static errcode_t clean_block_edge(struct fuse2fs *ff, ext2_ino_t ino,
return io_channel_write_blk64(fs->io, blk, 1, *buf);
}
-static int punch_helper(struct fuse_file_info *fp, int mode, off_t offset,
- off_t len)
+static int fuse2fs_punch_range(struct fuse2fs *ff,
+ struct fuse2fs_file_handle *fh, int mode,
+ off_t offset, off_t len)
{
- struct fuse_context *ctxt = fuse_get_context();
- struct fuse2fs *ff = (struct fuse2fs *)ctxt->private_data;
- struct fuse2fs_file_handle *fh =
- (struct fuse2fs_file_handle *)(uintptr_t)fp->fh;
- ext2_filsys fs;
+ ext2_filsys fs = ff->fs;
struct ext2_inode_large inode;
blk64_t start, end;
errcode_t err;
char *buf = NULL;
- FUSE2FS_CHECK_CONTEXT(ff);
- FUSE2FS_CHECK_HANDLE(ff, fh);
- fs = ff->fs;
dbg_printf(ff, "%s: offset=%jd len=%jd\n", __func__,
(intmax_t) offset, (intmax_t) len);
@@ -4578,13 +4566,15 @@ static int punch_helper(struct fuse_file_info *fp, int mode, off_t offset,
return 0;
}
-static int zero_helper(struct fuse_file_info *fp, int mode, off_t offset,
- off_t len)
+static int fuse2fs_zero_range(struct fuse2fs *ff,
+ struct fuse2fs_file_handle *fh, int mode,
+ off_t offset, off_t len)
{
- int ret = punch_helper(fp, mode | FL_KEEP_SIZE_FLAG, offset, len);
+ int ret = fuse2fs_punch_range(ff, fh, mode | FL_KEEP_SIZE_FLAG, offset,
+ len);
if (!ret)
- ret = fallocate_helper(fp, mode, offset, len);
+ ret = fuse2fs_allocate_range(ff, fh, mode, offset, len);
return ret;
}
@@ -4594,24 +4584,29 @@ static int op_fallocate(const char *path EXT2FS_ATTR((unused)), int mode,
{
struct fuse_context *ctxt = fuse_get_context();
struct fuse2fs *ff = (struct fuse2fs *)ctxt->private_data;
- ext2_filsys fs = ff->fs;
+ struct fuse2fs_file_handle *fh =
+ (struct fuse2fs_file_handle *)(uintptr_t)fp->fh;
+ ext2_filsys fs;
int ret;
/* Catch unknown flags */
if (mode & ~(FL_ZERO_RANGE_FLAG | FL_PUNCH_HOLE_FLAG | FL_KEEP_SIZE_FLAG))
return -EOPNOTSUPP;
+ FUSE2FS_CHECK_CONTEXT(ff);
+ FUSE2FS_CHECK_HANDLE(ff, fh);
+ fs = ff->fs;
pthread_mutex_lock(&ff->bfl);
if (!fs_writeable(fs)) {
ret = -EROFS;
goto out;
}
if (mode & FL_ZERO_RANGE_FLAG)
- ret = zero_helper(fp, mode, offset, len);
+ ret = fuse2fs_zero_range(ff, fh, mode, offset, len);
else if (mode & FL_PUNCH_HOLE_FLAG)
- ret = punch_helper(fp, mode, offset, len);
+ ret = fuse2fs_punch_range(ff, fh, mode, offset, len);
else
- ret = fallocate_helper(fp, mode, offset, len);
+ ret = fuse2fs_allocate_range(ff, fh, mode, offset, len);
out:
pthread_mutex_unlock(&ff->bfl);
next prev parent reply other threads:[~2025-09-15 23:59 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-15 23:58 [PATCHSET 1/6] fuse2fs: clean up operation startup Darrick J. Wong
2025-09-15 23:59 ` [PATCH 1/9] fuse2fs: rework FUSE2FS_CHECK_CONTEXT not to rely on global_fs Darrick J. Wong
2025-09-15 23:59 ` [PATCH 2/9] fuse2fs: rework checking file handles Darrick J. Wong
2025-09-15 23:59 ` Darrick J. Wong [this message]
2025-09-16 0:00 ` [PATCH 4/9] fuse2fs: consolidate file handle checking in op_ioctl Darrick J. Wong
2025-09-16 0:00 ` [PATCH 5/9] fuse2fs: move fs assignment closer to locking the bfl Darrick J. Wong
2025-09-16 0:00 ` [PATCH 6/9] fuse2fs: clean up operation startup Darrick J. Wong
2025-09-16 0:00 ` [PATCH 7/9] fuse2fs: clean up operation completion Darrick J. Wong
2025-09-16 0:01 ` [PATCH 8/9] fuse2fs: clean up more boilerplate Darrick J. Wong
2025-09-16 0:01 ` [PATCH 9/9] fuse2fs: collect runtime of various operations Darrick J. Wong
-- strict thread matches above, loose matches on Subject: below --
2025-11-06 22:28 [PATCHSET 3/9] fuse2fs: clean up operation startup Darrick J. Wong
2025-11-06 22:36 ` [PATCH 3/9] fuse2fs: rework fallocate file handle extraction Darrick J. Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=175798064149.349283.559208645562467096.stgit@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=linux-ext4@vger.kernel.org \
--cc=tytso@mit.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox