* Re: FW: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read error during resync.
@ 2008-03-24 18:49 John Z.
2008-03-25 3:41 ` Neil Brown
0 siblings, 1 reply; 2+ messages in thread
From: John Z. @ 2008-03-24 18:49 UTC (permalink / raw)
To: linux-raid, linux-kernel
>
> -----Original Message-----
> From: linux-kernel-owner@vger.kernel.org
> [mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of NeilBrown
> Sent: Sunday, March 02, 2008 5:18 PM
> To: Andrew Morton
> Cc: linux-raid@vger.kernel.org; linux-kernel@vger.kernel.org; K.Tanaka
> Subject: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read
> error during resync.
>
> diff .prev/drivers/md/raid1.c ./drivers/md/raid1.c
> --- .prev/drivers/md/raid1.c 2008-03-03 11:03:39.000000000 +1100
> +++ ./drivers/md/raid1.c 2008-03-03 09:56:52.000000000 +1100
> @@ -704,13 +704,20 @@ static void freeze_array(conf_t *conf)
> /* stop syncio and normal IO and wait for everything to
> * go quite.
> * We increment barrier and nr_waiting, and then
> - * wait until barrier+nr_pending match nr_queued+2
> + * wait until nr_pending match nr_queued+1
> + * This is called in the context of one normal IO request
> + * that has failed. Thus any sync request that might be pending
> + * will be blocked by nr_pending, and we need to wait for
> + * pending IO requests to complete or be queued for re-try.
> + * Thus the number queued (nr_queued) plus this request (1)
> + * must match the number of pending IOs (nr_pending) before
> + * we continue.
> */
> spin_lock_irq(&conf->resync_lock);
> conf->barrier++;
> conf->nr_waiting++;
> wait_event_lock_irq(conf->wait_barrier,
> - conf->barrier+conf->nr_pending ==
> conf->nr_queued+2,
> + conf->nr_pending == conf->nr_queued+1,
> conf->resync_lock,
> ({ flush_pending_writes(conf);
> raid1_unplug(conf->mddev->queue); }));
> --
When we call freeze_array, it is after reschedule_retry, during which conf->nr_queued is already incremented.
Should we use conf->nr_pending == conf->nr_pending here?
--
Want an e-mail address like mine?
Get a free e-mail account today at www.mail.com!
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: FW: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read error during resync.
2008-03-24 18:49 FW: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read error during resync John Z.
@ 2008-03-25 3:41 ` Neil Brown
0 siblings, 0 replies; 2+ messages in thread
From: Neil Brown @ 2008-03-25 3:41 UTC (permalink / raw)
To: John Z.; +Cc: linux-raid, linux-kernel
On Monday March 24, md2sf@mail.com wrote:
>
> >
> > -----Original Message-----
> > From: linux-kernel-owner@vger.kernel.org
> > [mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of NeilBrown
> > Sent: Sunday, March 02, 2008 5:18 PM
> > To: Andrew Morton
> > Cc: linux-raid@vger.kernel.org; linux-kernel@vger.kernel.org; K.Tanaka
> > Subject: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read
> > error during resync.
> >
>
> > diff .prev/drivers/md/raid1.c ./drivers/md/raid1.c
> > --- .prev/drivers/md/raid1.c 2008-03-03 11:03:39.000000000 +1100
> > +++ ./drivers/md/raid1.c 2008-03-03 09:56:52.000000000 +1100
> > @@ -704,13 +704,20 @@ static void freeze_array(conf_t *conf)
> > /* stop syncio and normal IO and wait for everything to
> > * go quite.
> > * We increment barrier and nr_waiting, and then
> > - * wait until barrier+nr_pending match nr_queued+2
> > + * wait until nr_pending match nr_queued+1
> > + * This is called in the context of one normal IO request
> > + * that has failed. Thus any sync request that might be pending
> > + * will be blocked by nr_pending, and we need to wait for
> > + * pending IO requests to complete or be queued for re-try.
> > + * Thus the number queued (nr_queued) plus this request (1)
> > + * must match the number of pending IOs (nr_pending) before
> > + * we continue.
> > */
> > spin_lock_irq(&conf->resync_lock);
> > conf->barrier++;
> > conf->nr_waiting++;
> > wait_event_lock_irq(conf->wait_barrier,
> > - conf->barrier+conf->nr_pending ==
> > conf->nr_queued+2,
> > + conf->nr_pending == conf->nr_queued+1,
> > conf->resync_lock,
> > ({ flush_pending_writes(conf);
> > raid1_unplug(conf->mddev->queue); }));
> > --
>
> When we call freeze_array, it is after reschedule_retry, during which conf->nr_queued is already incremented.
> Should we use conf->nr_pending == conf->nr_pending here?
>
Can I assume you mean
conf->nr_pending == conf->nr_queued
??
Yes, it is after reschedule_retry which increments ->nr_queued, but
also after
conf->nr_queued--;
in raid1d when the request is removed from the queue.
Does that make sense?
NeilBrown
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-03-25 3:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-24 18:49 FW: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read error during resync John Z.
2008-03-25 3:41 ` Neil Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox