From: "Yu Kuai" <yukuai@fnnas.com>
To: "dannyshih" <dannyshih@synology.com>, <song@kernel.org>,
<yukuai@fnnas.com>
Cc: <linux-raid@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] md: suspend array while updating raid_disks via sysfs
Date: Sat, 27 Dec 2025 09:55:57 +0800 [thread overview]
Message-ID: <1a102c5e-bf53-4419-ae8b-9d49127281f2@fnnas.com> (raw)
In-Reply-To: <20251226101816.4506-1-dannyshih@synology.com>
在 2025/12/26 18:18, dannyshih 写道:
> From: FengWei Shih<dannyshih@synology.com>
>
> In raid1_reshape(), freeze_array() is called before modifying the r1bio
> memory pool (conf->r1bio_pool) and conf->raid_disks, and
> unfreeze_array() is called after the update is completed.
>
> However, freeze_array() only waits until nr_sync_pending and
> (nr_pending - nr_queued) of all buckets reaches zero. When an I/O error
> occurs, nr_queued is increased and the corresponding r1bio is queued to
> either retry_list or bio_end_io_list. As a result, freeze_array() may
> unblock before these r1bios are released.
>
> This can lead to a situation where conf->raid_disks and the mempool have
> already been updated while queued r1bios, allocated with the old
> raid_disks value, are later released. Consequently, free_r1bio() may
> access memory out of bounds in put_all_bios() and release r1bios of the
> wrong size to the new mempool, potentially causing issues with the
> mempool as well.
>
> Since only normal I/O might increase nr_queued while an I/O error occurs,
> suspending the array avoids this issue.
>
> Note: Updating raid_disks via ioctl SET_ARRAY_INFO already suspends
> the array. Therefore, we suspend the array when updating raid_disks
> via sysfs to avoid this issue too.
>
> Signed-off-by: FengWei Shih<dannyshih@synology.com>
> ---
> v2:
> * Suspend array unconditionally when updating raid_disks
> * Refine commit message to describe the issue more concretely
> ---
> drivers/md/md.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Applied to md-6.19
--
Thansk,
Kuai
next prev parent reply other threads:[~2025-12-27 1:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-26 10:18 [PATCH v2] md: suspend array while updating raid_disks via sysfs dannyshih
2025-12-27 1:55 ` Yu Kuai [this message]
2025-12-29 9:19 ` Xiao Ni
2025-12-30 4:07 ` FengWei Shih
2025-12-30 7:45 ` Xiao Ni
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=1a102c5e-bf53-4419-ae8b-9d49127281f2@fnnas.com \
--to=yukuai@fnnas.com \
--cc=dannyshih@synology.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-raid@vger.kernel.org \
--cc=song@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox