From: Brian Foster <bfoster@redhat.com>
To: Youling Tang <youling.tang@linux.dev>
Cc: Kent Overstreet <kent.overstreet@linux.dev>,
linux-bcachefs@vger.kernel.org, linux-kernel@vger.kernel.org,
Youling Tang <tangyouling@kylinos.cn>
Subject: Re: [PATCH] bcachefs: set FMODE_CAN_ODIRECT instead of a dummy direct_IO method
Date: Mon, 13 May 2024 08:31:20 -0400 [thread overview]
Message-ID: <ZkIIGMlbg4s3GJFb@bfoster> (raw)
In-Reply-To: <20240510061058.316819-1-youling.tang@linux.dev>
On Fri, May 10, 2024 at 02:10:58PM +0800, Youling Tang wrote:
> From: Youling Tang <tangyouling@kylinos.cn>
>
> Since commit a2ad63daa88b ("VFS: add FMODE_CAN_ODIRECT file flag") file
> systems can just set the FMODE_CAN_ODIRECT flag at open time instead of
> wiring up a dummy direct_IO method to indicate support for direct I/O.
> Do that for bcachefs so that noop_direct_IO can eventually be removed.
>
> Similar to commit b29434999371 ("xfs: set FMODE_CAN_ODIRECT instead of
> a dummy direct_IO method").
>
> Signed-off-by: Youling Tang <tangyouling@kylinos.cn>
> ---
Seems straightforward:
Reviewed-by: Brian Foster <bfoster@redhat.com>
> fs/bcachefs/fs.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/fs/bcachefs/fs.c b/fs/bcachefs/fs.c
> index a8d71cec1c17..7ef41ce2d8c6 100644
> --- a/fs/bcachefs/fs.c
> +++ b/fs/bcachefs/fs.c
> @@ -1142,6 +1142,8 @@ static int bch2_open(struct inode *vinode, struct file *file)
> return ret;
> }
>
> + file->f_mode |= FMODE_CAN_ODIRECT;
> +
> return generic_file_open(vinode, file);
> }
>
> @@ -1234,7 +1236,6 @@ static const struct address_space_operations bch_address_space_operations = {
> .write_end = bch2_write_end,
> .invalidate_folio = bch2_invalidate_folio,
> .release_folio = bch2_release_folio,
> - .direct_IO = noop_direct_IO,
> #ifdef CONFIG_MIGRATION
> .migrate_folio = filemap_migrate_folio,
> #endif
> --
> 2.34.1
>
>
prev parent reply other threads:[~2024-05-13 12:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-10 6:10 [PATCH] bcachefs: set FMODE_CAN_ODIRECT instead of a dummy direct_IO method Youling Tang
2024-05-13 12:31 ` Brian Foster [this message]
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=ZkIIGMlbg4s3GJFb@bfoster \
--to=bfoster@redhat.com \
--cc=kent.overstreet@linux.dev \
--cc=linux-bcachefs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tangyouling@kylinos.cn \
--cc=youling.tang@linux.dev \
/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