From: Neil Brown <neilb@suse.de>
To: Dan Williams <dan.j.williams@intel.com>
Cc: linux-raid@vger.kernel.org, stable@kernel.org,
Przemyslaw Czarnowski
<przemyslaw.hawrylewicz.czarnowski@intel.com>
Subject: Re: [PATCH] md: move revalidate_disk() back outside open_mutex
Date: Mon, 9 Aug 2010 09:56:07 +1000 [thread overview]
Message-ID: <20100809095607.25ccb3e9@notabene> (raw)
In-Reply-To: <20100807010159.2745.75952.stgit@localhost.localdomain>
On Fri, 06 Aug 2010 18:01:59 -0700
Dan Williams <dan.j.williams@intel.com> wrote:
> Commit b821eaa5 "md: remove ->changed and related code" moved
> revalidate_disk() under open_mutex, and lockdep noticed.
>
> [ INFO: possible circular locking dependency detected ]
> 2.6.32-mdadm-locking #1
> -------------------------------------------------------
> mdadm/3640 is trying to acquire lock:
> (&bdev->bd_mutex){+.+.+.}, at: [<ffffffff811acecb>] revalidate_disk+0x5b/0x90
>
> but task is already holding lock:
> (&mddev->open_mutex){+.+...}, at: [<ffffffffa055e07a>] do_md_stop+0x4a/0x4d0 [md_mod]
>
> which lock already depends on the new lock.
Thanks! applied and sent to Linus - as you might have noticed.
I didn't really like the 'revalidate' variable, and realised that the 'err'
variable wasn't really needed either so added a patch to restructure the
function a little bit.
Thanks,
NeilBrown
>
> Cc: <stable@kernel.org>
> Reported-by: Przemyslaw Czarnowski <przemyslaw.hawrylewicz.czarnowski@intel.com>
> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
> ---
> drivers/md/md.c | 6 ++++--
> 1 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/md/md.c b/drivers/md/md.c
> index cb20d0b..9743554 100644
> --- a/drivers/md/md.c
> +++ b/drivers/md/md.c
> @@ -4711,7 +4711,7 @@ out:
> */
> static int do_md_stop(mddev_t * mddev, int mode, int is_open)
> {
> - int err = 0;
> + int err = 0, revalidate = 0;
> struct gendisk *disk = mddev->gendisk;
> mdk_rdev_t *rdev;
>
> @@ -4740,7 +4740,7 @@ static int do_md_stop(mddev_t * mddev, int mode, int is_open)
> }
>
> set_capacity(disk, 0);
> - revalidate_disk(disk);
> + revalidate = 1;
>
> if (mddev->ro)
> mddev->ro = 0;
> @@ -4748,6 +4748,8 @@ static int do_md_stop(mddev_t * mddev, int mode, int is_open)
> err = 0;
> }
> mutex_unlock(&mddev->open_mutex);
> + if (revalidate)
> + revalidate_disk(disk);
> if (err)
> return err;
> /*
>
> --
> 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
prev parent reply other threads:[~2010-08-08 23:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-07 1:01 [PATCH] md: move revalidate_disk() back outside open_mutex Dan Williams
2010-08-08 23:56 ` Neil Brown [this message]
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=20100809095607.25ccb3e9@notabene \
--to=neilb@suse.de \
--cc=dan.j.williams@intel.com \
--cc=linux-raid@vger.kernel.org \
--cc=przemyslaw.hawrylewicz.czarnowski@intel.com \
--cc=stable@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;
as well as URLs for NNTP newsgroup(s).