From: Dan Williams <dan.j.williams@intel.com>
To: Jan Kara <jack@suse.cz>, Asahi Lina <lina@asahilina.net>
Cc: Dave Chinner <david@fromorbit.com>, Jan Kara <jack@suse.cz>,
Dan Williams <dan.j.williams@intel.com>,
Matthew Wilcox <willy@infradead.org>,
"Alexander Viro" <viro@zeniv.linux.org.uk>,
Christian Brauner <brauner@kernel.org>,
Sergio Lopez Pascual <slp@redhat.com>,
<linux-fsdevel@vger.kernel.org>, <nvdimm@lists.linux.dev>,
<linux-kernel@vger.kernel.org>, <asahi@lists.linux.dev>
Subject: Re: [PATCH] dax: Allow block size > PAGE_SIZE
Date: Wed, 6 Nov 2024 11:59:44 -0800 [thread overview]
Message-ID: <672bcab0911a2_10bc62943f@dwillia2-xfh.jf.intel.com.notmuch> (raw)
In-Reply-To: <20241106121255.yfvlzcomf7yvrvm7@quack3>
Jan Kara wrote:
[..]
> > This WARN still feels like the wrong thing, though. Right now it is the
> > only thing in DAX code complaining on a page size/block size mismatch
> > (at least for virtiofs). If this is so important, I feel like there
> > should be a higher level check elsewhere, like something happening at
> > mount time or on file open. It should actually cause the operations to
> > fail cleanly.
>
> That's a fair point. Currently filesystems supporting DAX check for this in
> their mount code because there isn't really a DAX code that would get
> called during mount and would have enough information to perform the check.
> I'm not sure adding a new call just for this check makes a lot of sense.
> But if you have some good place in mind, please tell me.
Is not the reason that dax_writeback_mapping_range() the only thing
checking ->i_blkbits because 'struct writeback_control' does writeback
in terms of page-index ranges?
All other dax entry points are filesystem controlled that know the
block-to-pfn-to-mapping relationship.
Recall that dax_writeback_mapping_range() is historically for pmem
persistence guarantees to make sure that applications write through CPU
cache to media.
Presumably there are no cache coherency concerns with fuse and dax
writes from the guest side are not a risk of being stranded in CPU
cache. Host side filesystem writeback will take care of them when / if
the guest triggers a storage device cache flush, not a guest page cache
writeback.
So, I think the simplest fix here is potentially:
diff --git a/fs/fuse/dax.c b/fs/fuse/dax.c
index 12ef91d170bb..15cf7bb20b5e 100644
--- a/fs/fuse/dax.c
+++ b/fs/fuse/dax.c
@@ -777,11 +777,8 @@ ssize_t fuse_dax_write_iter(struct kiocb *iocb, struct iov_iter *from)
static int fuse_dax_writepages(struct address_space *mapping,
struct writeback_control *wbc)
{
-
- struct inode *inode = mapping->host;
- struct fuse_conn *fc = get_fuse_conn(inode);
-
- return dax_writeback_mapping_range(mapping, fc->dax->dev, wbc);
+ /* nothing to flush, fuse cache coherency is managed by the host */
+ return 0;
}
static vm_fault_t __fuse_dax_fault(struct vm_fault *vmf, unsigned int order,
next prev parent reply other threads:[~2024-11-06 20:00 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-01 12:22 Asahi Lina
2024-11-04 10:57 ` Jan Kara
2024-11-04 15:31 ` Asahi Lina
2024-11-04 22:16 ` Dave Chinner
2024-11-06 10:55 ` Asahi Lina
2024-11-06 12:12 ` Jan Kara
2024-11-06 19:59 ` Dan Williams [this message]
2024-11-07 10:01 ` Jan Kara
2024-11-07 16:09 ` Asahi Lina
2024-11-07 21:24 ` Dan Williams
2024-11-07 22:34 ` Asahi Lina
2024-11-08 12:16 ` Jan Kara
2024-11-12 9:49 ` Asahi Lina
2024-11-12 14:34 ` Jan Kara
2024-11-12 19:32 ` Dan Williams
2024-11-07 21:22 ` Dan Williams
2024-11-07 20:52 ` Matthew Wilcox
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=672bcab0911a2_10bc62943f@dwillia2-xfh.jf.intel.com.notmuch \
--to=dan.j.williams@intel.com \
--cc=asahi@lists.linux.dev \
--cc=brauner@kernel.org \
--cc=david@fromorbit.com \
--cc=jack@suse.cz \
--cc=lina@asahilina.net \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nvdimm@lists.linux.dev \
--cc=slp@redhat.com \
--cc=viro@zeniv.linux.org.uk \
--cc=willy@infradead.org \
/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
all inboxes | Powered by JetHome®