From: Yu Kuai <yukuai1@huaweicloud.com>
To: Song Liu <song@kernel.org>, Yu Kuai <yukuai1@huaweicloud.com>
Cc: xni@redhat.com, mariusz.tkaczyk@linux.intel.com,
linux-raid@vger.kernel.org, linux-kernel@vger.kernel.org,
yi.zhang@huawei.com, yangerkun@huawei.com,
"yukuai (C)" <yukuai3@huawei.com>
Subject: Re: [PATCH -next v3 6/7] md: factor out a helper rdev_addable() from remove_and_add_spares()
Date: Thu, 24 Aug 2023 09:16:19 +0800 [thread overview]
Message-ID: <c64c7b46-3447-79b5-a87f-7be835651269@huaweicloud.com> (raw)
In-Reply-To: <CAPhsuW5DytoZDTi1NEv_EDaKoaHNE9Vd3UU_O_-2XzVqq0YNwg@mail.gmail.com>
Hi,
在 2023/08/23 19:25, Song Liu 写道:
> On Wed, Aug 23, 2023 at 1:37 AM Yu Kuai <yukuai1@huaweicloud.com> wrote:
>>
> [...]
>>> diff --git i/drivers/md/md.c w/drivers/md/md.c
>>> index 78be7811a89f..8cb855d03e0a 100644
>>> --- i/drivers/md/md.c
>>> +++ w/drivers/md/md.c
>>> @@ -9117,6 +9117,20 @@ void md_do_sync(struct md_thread *thread)
>>> }
>>> EXPORT_SYMBOL_GPL(md_do_sync);
>>>
>>> +static bool rdev_addable(struct md_rdev *rdev)
>>> +{
>>> + if (test_bit(Candidate, &rdev->flags) || rdev->raid_disk >= 0 ||
>>> + test_bit(Faulty, &rdev->flags))
>>> + return false;
>>> + return true;
>>> +}
>>> +
>>> +static bool rdev_is_readd(struct md_rdev *rdev)
>>> +{
>>> + return rdev->saved_raid_disk >= 0 ||
>>> + !test_bit(Bitmap_sync, &rdev->flags);
>> This should use '&&' instead of '||' ?
>>
>>> +}
>>> +
>>> static int remove_and_add_spares(struct mddev *mddev,
>>> struct md_rdev *this)
>>> {
>>> @@ -9176,25 +9190,24 @@ static int remove_and_add_spares(struct mddev *mddev,
>>> rdev_for_each(rdev, mddev) {
>>> if (this && this != rdev)
>>> continue;
>>> - if (test_bit(Candidate, &rdev->flags))
>>> - continue;
>>> if (rdev->raid_disk >= 0 &&
>>> !test_bit(In_sync, &rdev->flags) &&
>>> !test_bit(Journal, &rdev->flags) &&
>>> !test_bit(Faulty, &rdev->flags))
>>> spares++;
>>> - if (rdev->raid_disk >= 0)
>>> +
>>> + if (!rdev_addable(rdev))
>>> continue;
>>> - if (test_bit(Faulty, &rdev->flags))
>>> +
>>> + if (test_bit(Journal, &rdev->flags))
>>> + goto hot_add_disk;
>>> +
>>
>> I understand what you mean now, but I must use the exact same judgement
>> in the new helper md_spares_need_change() in patch 7, there will be
>> redundant code this way.
>>
>> How about this, rework rdev_addable():
>
> Yeah, this was another option that I was thinking about. Let's go with
> this version.
>
Ok, and I'll do this for rdev_removeable() in patch 4 as well.
Thanks,
Kuai
> Thanks,
> Song
>
>>
>> static bool rdev_addable(struct md_rdev *rdev)
>> {
>> + /* rdev is already used, don't add it again. */
>> if (test_bit(Candidate, &rdev->flags) || rdev->raid_disk >= 0 ||
>> test_bit(Faulty, &rdev->flags))
>> return false;
>>
>> ~ /* Allow to add journal disk. */
>> ~ if (test_bit(Journal, &rdev->flags))
>> ~_ return true;
>>
>> ~ /* Allow to add if array is read-write. */
>> + if (md_is_rdwr(rdev->mddev))
>> + return true;
>> +
>> + /*
>> + * For read-only array, only allow to readd a rdev. And if
>> bitmap is
>> + * used, don't allow to readd a rdev that is too old.
>> + */
>> + if (rdev->saved_raid_disk >=0 && !test_bit(Bitmap_sync,
>> &rdev->flags))
>> + return true;
>> +
>> + return false;
>> }
> .
>
next prev parent reply other threads:[~2023-08-24 1:17 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-20 9:09 [PATCH -next v3 0/7] md: make rdev addition and removal independent from daemon thread Yu Kuai
2023-08-20 9:09 ` [PATCH -next v3 1/7] md: use separate work_struct for md_start_sync() Yu Kuai
2023-08-22 10:04 ` Xiao Ni
2023-08-20 9:09 ` [PATCH -next v3 2/7] md: factor out a helper to choose sync action from md_check_recovery() Yu Kuai
2023-08-22 10:04 ` Xiao Ni
2023-08-20 9:09 ` [PATCH -next v3 3/7] md: delay choosing sync action to md_start_sync() Yu Kuai
2023-08-22 10:06 ` Xiao Ni
2023-08-20 9:09 ` [PATCH -next v3 4/7] md: factor out a helper rdev_removeable() from remove_and_add_spares() Yu Kuai
2023-08-22 10:19 ` Xiao Ni
2023-08-23 2:45 ` Yu Kuai
2023-08-23 3:42 ` Xiao Ni
2023-08-20 9:09 ` [PATCH -next v3 5/7] md: factor out a helper rdev_is_spare() " Yu Kuai
2023-08-23 2:20 ` Xiao Ni
2023-08-23 2:28 ` Xiao Ni
2023-08-23 2:47 ` Yu Kuai
2023-08-20 9:09 ` [PATCH -next v3 6/7] md: factor out a helper rdev_addable() " Yu Kuai
2023-08-21 23:22 ` Song Liu
2023-08-22 2:17 ` Yu Kuai
2023-08-23 3:04 ` Yu Kuai
2023-08-23 5:26 ` Song Liu
2023-08-23 8:37 ` Yu Kuai
2023-08-23 11:25 ` Song Liu
2023-08-24 1:16 ` Yu Kuai [this message]
2023-08-20 9:09 ` [PATCH -next v3 7/7] md: delay remove_and_add_spares() for read only array to md_start_sync() Yu Kuai
2023-08-23 3:24 ` 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=c64c7b46-3447-79b5-a87f-7be835651269@huaweicloud.com \
--to=yukuai1@huaweicloud.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-raid@vger.kernel.org \
--cc=mariusz.tkaczyk@linux.intel.com \
--cc=song@kernel.org \
--cc=xni@redhat.com \
--cc=yangerkun@huawei.com \
--cc=yi.zhang@huawei.com \
--cc=yukuai3@huawei.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;
as well as URLs for NNTP newsgroup(s).