From: Keith Busch <kbusch@meta.com>
To: <linux-block@vger.kernel.org>, <linux-ext4@vger.kernel.org>,
<linux-f2fs-devel@lists.sourceforge.net>,
<linux-fsdevel@vger.kernel.org>, <linux-xfs@vger.kernel.org>
Cc: <axboe@kernel.dk>, <jack@suse.cz>, <brauner@kernel.org>,
<cem@kernel.org>, <jaegeuk@kernel.org>, <aalbersh@kernel.org>,
<tytso@mit.edu>, Keith Busch <kbusch@kernel.org>
Subject: [PATCHv2 5/5] f2fs: report direct io attributes through file_getattr
Date: Fri, 10 Jul 2026 14:06:46 -0700 [thread overview]
Message-ID: <20260710210646.3576365-6-kbusch@meta.com> (raw)
In-Reply-To: <20260710210646.3576365-1-kbusch@meta.com>
From: Keith Busch <kbusch@kernel.org>
Fill in the direct io alignment attributes for regular files that support
direct writes.
Signed-off-by: Keith Busch <kbusch@kernel.org>
---
fs/f2fs/file.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 4b52c56d71f07..230b0dca06251 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -3452,6 +3452,25 @@ static int f2fs_ioc_setproject(struct inode *inode, __u32 projid)
}
#endif
+static void f2fs_fileattr_get_dio(struct inode *inode, struct file_kattr *fa)
+{
+ struct block_device *bdev;
+ unsigned int bsize;
+
+ if (!S_ISREG(inode->i_mode) || f2fs_force_buffered_io(inode, WRITE))
+ return;
+
+ bdev = inode->i_sb->s_bdev;
+ if (bdev)
+ bdev_fill_dio_attr(bdev, fa);
+
+ bsize = i_blocksize(inode);
+ fa->fsx_dio_mem_align = bsize;
+ fa->fsx_dio_offset_align = bsize;
+ fa->fsx_dio_read_offset_align = bsize;
+ fa->fsx_xflags |= FS_XFLAG_DIO;
+}
+
int f2fs_fileattr_get(struct dentry *dentry, struct file_kattr *fa)
{
struct inode *inode = d_inode(dentry);
@@ -3472,6 +3491,7 @@ int f2fs_fileattr_get(struct dentry *dentry, struct file_kattr *fa)
if (f2fs_sb_has_project_quota(F2FS_I_SB(inode)))
fa->fsx_projid = from_kprojid(&init_user_ns, fi->i_projid);
+ f2fs_fileattr_get_dio(inode, fa);
return 0;
}
--
2.53.0-Meta
next prev parent reply other threads:[~2026-07-10 21:22 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-10 21:06 [PATCHv2 0/5] direct-io file extended attributes Keith Busch
2026-07-10 21:06 ` [PATCHv2 1/5] fs: add direct io attributes to file_getattr Keith Busch
2026-07-10 21:06 ` [PATCHv2 2/5] block: report direct io attributes through file_getattr Keith Busch
2026-07-10 21:06 ` [PATCHv2 3/5] xfs: " Keith Busch
2026-07-10 21:06 ` [PATCHv2 4/5] ext4: " Keith Busch
2026-07-10 21:06 ` Keith Busch [this message]
2026-07-10 21:53 ` [f2fs-dev] [PATCHv2 0/5] direct-io file extended attributes Eric Biggers
2026-07-10 22:58 ` Keith Busch
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=20260710210646.3576365-6-kbusch@meta.com \
--to=kbusch@meta.com \
--cc=aalbersh@kernel.org \
--cc=axboe@kernel.dk \
--cc=brauner@kernel.org \
--cc=cem@kernel.org \
--cc=jack@suse.cz \
--cc=jaegeuk@kernel.org \
--cc=kbusch@kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-xfs@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