From: Qu Wenruo <wqu@suse.com>
To: linux-btrfs@vger.kernel.org
Subject: [PATCH v2 0/2] btrfs: scrub: update last_physical more frequently
Date: Mon, 22 Jul 2024 15:25:47 +0930 [thread overview]
Message-ID: <cover.1721627526.git.wqu@suse.com> (raw)
[CHANGELOG]
v2:
- Rebased to the latest for-next branch
No conflict at all
- Rewording the second patch
There are two problems, one is serious (no last_physical update at
all for almost full data chunks), the other one is just inconvenient
(slow update on "btrfs scrub status").
- Add the missing spinlock
It's mentioned in the commit messages but not in the code
There is a report in the mailling list that scrub only updates its
@last_physical at the end of a chunk.
In fact, it can be worse if there is a used stripe (aka, some extents
exist in the stripe) at the chunk boundary.
As it would skip the @last_physical for that chunk at all.
And for large fses, there are ensured to be several almost full data
With @last_physical not update for a long time, if we cancel the scrub
halfway and resume, the resumed one scrub would only start at
@last_physical, meaning a lot of scrubbed extents would be re-scrubbed,
wasting quite some IO and CPU.
This patchset would fix it by updateing @last_physical for each finished
stripe (including both P/Q stripe of RAID56, and all data stripes for
all profiles), so that even if the scrub is cancelled, we at most
re-scrub one stripe.
Qu Wenruo (2):
btrfs: extract the stripe length calculation into a helper
btrfs: scrub: update last_physical after scrubing one stripe
fs/btrfs/scrub.c | 27 +++++++++++++++++++++------
1 file changed, 21 insertions(+), 6 deletions(-)
--
2.45.2
next reply other threads:[~2024-07-22 5:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-22 5:55 Qu Wenruo [this message]
2024-07-22 5:55 ` [PATCH v2 1/2] btrfs: extract the stripe length calculation into a helper Qu Wenruo
2024-07-22 5:55 ` [PATCH v2 2/2] btrfs: scrub: update last_physical after scrubing one stripe Qu Wenruo
2024-07-22 7:40 ` Johannes Thumshirn
2024-07-25 22:09 ` [PATCH v2 0/2] btrfs: scrub: update last_physical more frequently David Sterba
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=cover.1721627526.git.wqu@suse.com \
--to=wqu@suse.com \
--cc=linux-btrfs@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.