From: David Sterba <dsterba@suse.cz>
To: Qu Wenruo <wqu@suse.com>
Cc: linux-btrfs@vger.kernel.org
Subject: Re: [PATCH] btrfs: remove the dead copied check in btrfs_copy_from_user()
Date: Thu, 13 Aug 2020 12:48:15 +0200 [thread overview]
Message-ID: <20200813104815.GE2026@twin.jikos.cz> (raw)
In-Reply-To: <20200813061533.85671-1-wqu@suse.com>
On Thu, Aug 13, 2020 at 02:15:33PM +0800, Qu Wenruo wrote:
> There is btrfs specific check in btrfs_copy_from_user(), after
> iov_iter_copy_from_user_atomic() call, we check if the page is uptodate
> and if the copied bytes is smaller than what we expect.
>
> However that check will never be triggered due to the following reasons:
> - PageUptodate() check conflicts with current behavior
> Currently we ensure all pages that will go through a partial write
> (some bytes are not covered by the write range) will be forced
> uptodate.
>
> This is the common behavior to ensure we get the correct content.
> This behavior is always true, no matter if my previous patch "btrfs:
> refactor how we prepare pages for btrfs_buffered_write()" is applied.
Would it make sense to add an assert here? Checking for the page
up-to-date status.
> - iov_iter_copy_from_user_atomic() only returns 0 or @bytes
> It won't return a short write.
And maybe for that one too, I'm not able to navigate through the maze of
the iov_iter_* macros.
> So we're completely fine to remove the (PageUptodate() && copied <
> count) check, as we either get copied == 0, and break the loop anyway,
> or do a proper copy.
>
> This will revert commit 31339acd07b4 ("Btrfs: deal with short returns from
> copy_from_user").
As this is a very old patch, the changes outside of btrfs are likely to
make the piece of code redundant.
next prev parent reply other threads:[~2020-08-13 10:49 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-13 6:15 [PATCH] btrfs: remove the dead copied check in btrfs_copy_from_user() Qu Wenruo
2020-08-13 10:48 ` David Sterba [this message]
2020-08-13 11:03 ` Qu Wenruo
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=20200813104815.GE2026@twin.jikos.cz \
--to=dsterba@suse.cz \
--cc=linux-btrfs@vger.kernel.org \
--cc=wqu@suse.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