From: Neil Brown <neilb@suse.de>
To: Dan Williams <dan.j.williams@intel.com>
Cc: Jens Axboe <jens.axboe@oracle.com>,
"Rafael J. Wysocki" <rjw@sisk.pl>,
Jacek Luczak <difrost.kernel@gmail.com>,
Prakash Punnoor <prakash@punnoor.de>,
Linux Kernel list <linux-kernel@vger.kernel.org>,
linux-raid@vger.kernel.org
Subject: Re: WARNING in 2.6.25-07422-gb66e1f1
Date: Fri, 9 May 2008 12:15:27 +1000 [thread overview]
Message-ID: <18467.46015.146700.695469@notabene.brown> (raw)
In-Reply-To: message from Dan Williams on Thursday May 8
On Thursday May 8, dan.j.williams@intel.com wrote:
> On Thu, 2008-05-08 at 11:46 -0700, Dan Williams wrote:
> Subject: md: tell blk-core about device_lock for protecting the queue flags
> From: Dan Williams <dan.j.williams@intel.com>
>
> Now that queue flags are no longer atomic (commit:
> 75ad23bc0fcb4f992a5d06982bf0857ab1738e9e) blk-core checks the queue is locked
> via ->queue_lock. As noticed by Neil conf->device_lock already satisfies this
> requirement.
>
> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
> ---
>
> drivers/md/linear.c | 6 ++++++
> drivers/md/multipath.c | 6 ++++++
> drivers/md/raid0.c | 6 ++++++
> drivers/md/raid1.c | 7 ++++++-
> drivers/md/raid10.c | 7 ++++++-
> drivers/md/raid5.c | 2 ++
> include/linux/raid/linear.h | 3 ++-
> include/linux/raid/raid0.h | 1 +
> 8 files changed, 35 insertions(+), 3 deletions(-)
>
>
> diff --git a/drivers/md/linear.c b/drivers/md/linear.c
> index 0b85117..d026f08 100644
> --- a/drivers/md/linear.c
> +++ b/drivers/md/linear.c
> @@ -122,6 +122,10 @@ static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
> cnt = 0;
> conf->array_size = 0;
>
> + spin_lock_init(&conf->device_lock);
> + /* blk-core uses queue_lock to verify protection of the queue flags */
> + mddev->queue->queue_lock = &conf->device_lock;
> +
> rdev_for_each(rdev, tmp, mddev) {
> int j = rdev->raid_disk;
> dev_info_t *disk = conf->disks + j;
> @@ -133,8 +137,10 @@ static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
>
> disk->rdev = rdev;
>
> + spin_lock(&conf->device_lock);
> blk_queue_stack_limits(mddev->queue,
> rdev->bdev->bd_disk->queue);
> + spin_unlock(&conf->device_lock);
> /* as we don't honour merge_bvec_fn, we must never risk
> * violating it, so limit ->max_sector to one PAGE, as
> * a one page request is never in violation.
This shouldn't be necessary.
There is no actual race here -- mddev->queue->queue_flags is not going to be
accessed by anyone else until do_md_run does
mddev->queue->make_request_fn = mddev->pers->make_request;
which is much later.
So we only need to be sure that "queue_is_locked" doesn't complain.
And as q->queue_lock is still NULL at this point, it won't complain.
I think that the *only* change that is needs is to put
> + /* blk-core uses queue_lock to verify protection of the queue flags */
> + mddev->queue->queue_lock = &conf->device_lock;
after each
> + spin_lock_init(&conf->device_lock);
i.e. in raid1.c, raid10.c and raid5.c
??
NeilBrown
next prev parent reply other threads:[~2008-05-09 2:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200805031151.44287.prakash@punnoor.de>
[not found] ` <481DB3F3.5080102@gmail.com>
[not found] ` <20080504183839.GN12774@kernel.dk>
2008-05-05 7:24 ` WARNING in 2.6.25-07422-gb66e1f1 Neil Brown
2008-05-05 18:03 ` Dan Williams
2008-05-05 19:02 ` Jens Axboe
2008-05-08 18:39 ` Rafael J. Wysocki
2008-05-08 18:46 ` Dan Williams
2008-05-08 23:18 ` Dan Williams
2008-05-09 2:15 ` Neil Brown [this message]
2008-05-09 4:59 ` Dan Williams
2008-05-09 5:38 ` Neil Brown
2008-05-12 17:46 ` Dan Williams
2008-05-13 1:08 ` Neil Brown
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=18467.46015.146700.695469@notabene.brown \
--to=neilb@suse.de \
--cc=dan.j.williams@intel.com \
--cc=difrost.kernel@gmail.com \
--cc=jens.axboe@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-raid@vger.kernel.org \
--cc=prakash@punnoor.de \
--cc=rjw@sisk.pl \
/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).