From: Eric Sandeen <sandeen@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Miklos Szeredi <mszeredi@redhat.com>,
Ira Weiny <ira.weiny@intel.com>,
David Howells <dhowells@redhat.com>,
linux-fsdevel <linux-fsdevel@vger.kernel.org>,
linux-man <linux-man@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
xfs <linux-xfs@vger.kernel.org>,
Ext4 Developers List <linux-ext4@vger.kernel.org>,
Xiaoli Feng <xifeng@redhat.com>
Subject: Re: [PATCH 2/2] statx: move STATX_ATTR_DAX attribute handling to filesystems
Date: Tue, 1 Dec 2020 14:50:03 -0600 [thread overview]
Message-ID: <71eecee3-3fc9-d18d-8553-d8326f6d73b3@redhat.com> (raw)
In-Reply-To: <CAHk-=wgOu9vgUfOSsjO3hHHxGDn4BKhitC_8XCfgmGKiiSm_ag@mail.gmail.com>
On 12/1/20 2:04 PM, Linus Torvalds wrote:
> On Tue, Dec 1, 2020 at 8:59 AM Eric Sandeen <sandeen@redhat.com> wrote:
>>
>> It's a bit odd to set STATX_ATTR_DAX into the statx attributes in the VFS;
>> while the VFS can detect the current DAX state, it is the filesystem which
>> actually sets S_DAX on the inode, and the filesystem is the place that
>> knows whether DAX is something that the "filesystem actually supports" [1]
>> so that the statx attributes_mask can be properly set.
>>
>> So, move STATX_ATTR_DAX attribute setting to the individual dax-capable
>> filesystems, and update the attributes_mask there as well.
>
> I'm not really understanding the logic behind this.
>
> The whole IS_DAX(inode) thing exists in various places outside the
> low-level filesystem, why shouldn't stat() do this?
>
> If IS_DAX() is incorrect, then we have much bigger problems than some
> stat results. We have core functions like generic_file_read_iter() etc
> all making actual behavioral judgements on IS_DAX().
It's not incorrect, I didn't mean to imply that. Current code does accurately
set the DAX flag in the statx attributes.
> And if IS_DAX() is correct, then why shouldn't this just be done in
> generic code? Why move it to every individual filesystem?
At the end of the day, it's because only the individual filesystems can
manage the dax flag in the statx attributes_mask. (That's only place that
knows if dax "is available" in general, as opposed to being set on a specific
inode) So if they have to do that, they may as well set the actual attribute
as well, like they do for every other flag they manage...
I mean, we could leave the statx->attributes setting in the vfs, and add
the statx->attributes_mask setting to each dax-capable filesystem. That just
felt a bit asymmetric vs. the way every other filesystem-specific flag gets
handled.
-Eric
next prev parent reply other threads:[~2020-12-01 20:51 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-01 16:54 [PATCH 0/2] statx: Fix DAX attribute collision and handling Eric Sandeen
2020-12-01 16:57 ` [PATCH 1/2] uapi: fix statx attribute value overlap for DAX & MOUNT_ROOT Eric Sandeen
2020-12-01 17:18 ` David Howells
2020-12-01 17:32 ` Darrick J. Wong
2020-12-01 17:44 ` Eric Sandeen
2020-12-01 18:31 ` Andreas Dilger
2020-12-01 18:36 ` Eric Sandeen
2020-12-02 2:16 ` Ira Weiny
2020-12-02 20:42 ` Linus Torvalds
2020-12-03 2:45 ` Ira Weiny
2020-12-03 18:04 ` Linus Torvalds
2020-12-01 16:59 ` [PATCH 2/2] statx: move STATX_ATTR_DAX attribute handling to filesystems Eric Sandeen
2020-12-01 17:20 ` David Howells
2020-12-01 17:28 ` David Howells
2020-12-01 17:39 ` Darrick J. Wong
2020-12-01 17:53 ` Eric Sandeen
2020-12-01 20:52 ` Dave Chinner
2020-12-01 22:03 ` Eric Sandeen
2020-12-01 22:12 ` Linus Torvalds
2020-12-01 22:26 ` Eric Sandeen
2020-12-02 2:29 ` Ira Weiny
2020-12-02 8:03 ` Christoph Hellwig
2020-12-01 20:04 ` Linus Torvalds
2020-12-01 20:50 ` Eric Sandeen [this message]
2020-12-01 21:04 ` David Howells
2020-12-01 22:09 ` Linus Torvalds
2020-12-02 0:11 ` Eric Sandeen
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=71eecee3-3fc9-d18d-8553-d8326f6d73b3@redhat.com \
--to=sandeen@redhat.com \
--cc=dhowells@redhat.com \
--cc=ira.weiny@intel.com \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-man@vger.kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=mszeredi@redhat.com \
--cc=torvalds@linux-foundation.org \
--cc=xifeng@redhat.com \
/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