From: Shaohua Li <shli@kernel.org>
To: Song Liu <songliubraving@fb.com>
Cc: linux-raid@vger.kernel.org, shli@fb.com, neilb@suse.com,
kernel-team@fb.com, dan.j.williams@intel.com, hch@infradead.org,
jes.sorensen@gmail.com
Subject: Re: [PATCH 1/2] md/r5cache: improve add-journal
Date: Wed, 15 Mar 2017 15:51:00 -0700 [thread overview]
Message-ID: <20170315225100.mr4glirjdjx237fq@kernel.org> (raw)
In-Reply-To: <20170315182816.3627123-1-songliubraving@fb.com>
On Wed, Mar 15, 2017 at 11:28:15AM -0700, Song Liu wrote:
> 1. suspend the array before adding journal, so that we can add journal
> when the array is not read-only;
we can't call mddev_suspend in raid5d, because there is deadlock.
raid5_add_disk can be called in raid5d.
> 2. allow recreate journal when existing journal is Faulty. So that we can
> add-journal before removing failed journal.
this is weird usage, why don't we remove the failed journal first?
> Signed-off-by: Song Liu <songliubraving@fb.com>
> ---
> drivers/md/md.c | 5 +++--
> drivers/md/raid5.c | 6 ++----
> 2 files changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/md/md.c b/drivers/md/md.c
> index 42e68b2..ac3bd15 100644
> --- a/drivers/md/md.c
> +++ b/drivers/md/md.c
> @@ -6230,9 +6230,10 @@ static int add_new_disk(struct mddev *mddev, mdu_disk_info_t *info)
> struct md_rdev *rdev2;
> bool has_journal = false;
>
> - /* make sure no existing journal disk */
> + /* make sure no active journal disk */
> rdev_for_each(rdev2, mddev) {
> - if (test_bit(Journal, &rdev2->flags)) {
> + if (test_bit(Journal, &rdev2->flags) &&
> + !test_bit(Faulty, &rdev2->flags)) {
> has_journal = true;
> break;
> }
> diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
> index 447d9dd..ee8648b 100644
> --- a/drivers/md/raid5.c
> +++ b/drivers/md/raid5.c
> @@ -7758,11 +7758,9 @@ static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
> return -EBUSY;
>
> rdev->raid_disk = 0;
> - /*
> - * The array is in readonly mode if journal is missing, so no
> - * write requests running. We should be safe
> - */
> + mddev_suspend(mddev);
> log_init(conf, rdev);
> + mddev_resume(mddev);
> return 0;
> }
> if (mddev->recovery_disabled == conf->recovery_disabled)
> --
> 2.9.3
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-raid" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2017-03-15 22:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-15 18:28 [PATCH 1/2] md/r5cache: improve add-journal Song Liu
2017-03-15 18:28 ` [PATCH 2/2] md/r5cache: journal remove support Song Liu
2017-03-15 22:52 ` Shaohua Li
2017-03-15 22:51 ` Shaohua Li [this message]
2017-03-15 23:48 ` [PATCH 1/2] md/r5cache: improve add-journal Song Liu
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=20170315225100.mr4glirjdjx237fq@kernel.org \
--to=shli@kernel.org \
--cc=dan.j.williams@intel.com \
--cc=hch@infradead.org \
--cc=jes.sorensen@gmail.com \
--cc=kernel-team@fb.com \
--cc=linux-raid@vger.kernel.org \
--cc=neilb@suse.com \
--cc=shli@fb.com \
--cc=songliubraving@fb.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).