LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Tejun Heo <htejun@gmail.com>
To: Elias Oltmanns <eo@nebensachen.de>
Cc: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>,
Jeff Garzik <jeff@garzik.org>,
Randy Dunlap <randy.dunlap@oracle.com>,
linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/4 v2] libata: Implement disk shock protection support
Date: Wed, 17 Sep 2008 11:03:39 -0700 [thread overview]
Message-ID: <48D1467B.2070301@gmail.com> (raw)
In-Reply-To: <20080917163144.9870.97008.stgit@denkblock.local>
Hello, Elias.
Looks generally good. Just a few points.
Elias Oltmanns wrote:
> +static void ata_eh_pull_action(struct ata_link *link, struct ata_device *dev,
> + unsigned int action)
> +{
> + struct ata_port *ap = link->ap;
> + struct ata_eh_info *ehi = &link->eh_info, *ehci = &link->eh_context.i;
> + struct ata_device *tdev;
> + unsigned int taction;
> + unsigned long flags;
> +
> + spin_lock_irqsave(ap->lock, flags);
> +
> + if (dev) {
> + taction = action & (ehi->action | ehi->dev_action[dev->devno]);
> + ehci->dev_action[dev->devno] |= taction & ATA_EH_PERDEV_MASK;
> + ehci->action |= taction & ~ATA_EH_PERDEV_MASK;
> + } else {
> + if (WARN_ON(action & ATA_EH_PERDEV_MASK))
> + action &= ~ATA_EH_PERDEV_MASK;
> + ata_link_for_each_dev(tdev, link)
> + taction |= ehi->dev_action[tdev->devno] & action;
taction seems to be being used uninitialized.
> + do {
> + unsigned long now;
> +
> + deadline = jiffies;
> + ata_port_for_each_link(link, ap) {
> + ata_link_for_each_dev(dev, link) {
> + struct ata_eh_info *ehi = &link->eh_context.i;
> +
> + if (dev->class != ATA_DEV_ATA)
> + continue;
> +
> + ata_eh_pull_action(link, dev, ATA_EH_PARK);
> + if (ehi->dev_action[dev->devno] & ATA_EH_PARK) {
> + unsigned long tmp =
> + dev->unpark_deadline;
> +
> + if (time_before(deadline, tmp))
> + deadline = tmp;
> + else if (time_before_eq(tmp, jiffies))
> + continue;
> + }
> +
> + ata_eh_park_issue_cmd(dev, 1);
> + }
> + }
> + now = jiffies;
> + if (time_before_eq(deadline, now))
> + break;
> + prepare_to_wait(&ata_scsi_park_wq, &wait, TASK_UNINTERRUPTIBLE);
Doesn't prepare_to_wait() have to come before pull_action and timeout
check? Which in turn means that it should be a completion instead of
wait combined with INIT_COMPLETION because thread state can't be used
to track wake up as ata_eh_park_issue_cmd() sleeps.
Thanks. :-)
--
tejun
next prev parent reply other threads:[~2008-09-17 18:06 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-17 16:28 Disk shock protection in GNU/Linux Elias Oltmanns
2008-09-17 16:34 ` [PATCH 1/4 v2] Introduce ata_id_has_unload() Elias Oltmanns
2008-09-17 16:57 ` Tejun Heo
2008-09-18 23:24 ` Bartlomiej Zolnierkiewicz
2008-09-17 16:37 ` [PATCH 2/4 v2] libata: Implement disk shock protection support Elias Oltmanns
2008-09-17 18:03 ` Tejun Heo [this message]
2008-09-17 18:08 ` Tejun Heo
2008-09-17 18:09 ` Tejun Heo
2008-09-19 9:49 ` Elias Oltmanns
2008-09-19 12:14 ` Tejun Heo
2008-09-19 14:06 ` Elias Oltmanns
2008-09-19 14:15 ` Tejun Heo
2008-09-19 15:00 ` Elias Oltmanns
2008-09-20 4:48 ` Tejun Heo
2008-09-17 16:38 ` [PATCH 3/4 v2] ide: " Elias Oltmanns
2008-09-18 23:24 ` Bartlomiej Zolnierkiewicz
2008-09-19 0:28 ` Elias Oltmanns
2008-09-19 0:47 ` Bartlomiej Zolnierkiewicz
2008-10-04 9:44 ` Elias Oltmanns
2008-10-04 13:49 ` Elias Oltmanns
2008-10-04 23:16 ` Elias Oltmanns
2008-10-08 18:56 ` Bartlomiej Zolnierkiewicz
2008-09-17 16:40 ` [PATCH 4/4 v2] Add documentation for hard disk shock protection interface Elias Oltmanns
2008-09-18 23:28 ` Bartlomiej Zolnierkiewicz
2008-10-04 9:55 ` Elias Oltmanns
2008-10-08 18:56 ` Bartlomiej Zolnierkiewicz
2008-09-19 4:21 ` Grant Grundler
2008-09-19 12:08 ` Elias Oltmanns
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=48D1467B.2070301@gmail.com \
--to=htejun@gmail.com \
--cc=bzolnier@gmail.com \
--cc=eo@nebensachen.de \
--cc=jeff@garzik.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=randy.dunlap@oracle.com \
--subject='Re: [PATCH 2/4 v2] libata: Implement disk shock protection support' \
/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
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).