From: Jeff Garzik <jgarzik@pobox.com>
To: Tejun Heo <htejun@gmail.com>
Cc: linux-ide@vger.kernel.org, albertcc@tw.ibm.com
Subject: Re: [PATCH 12/12] libata: EH / pio tasks synchronization
Date: Sun, 22 Jan 2006 04:58:11 -0500 [thread overview]
Message-ID: <43D35733.1040609@pobox.com> (raw)
In-Reply-To: <11379167111043-git-send-email-htejun@gmail.com>
Tejun Heo wrote:
> This patch makes sure that pio tasks are flushed before proceeding
> with EH.
>
> Signed-off-by: Tejun Heo <htejun@gmail.com>
> +static void ata_flush_pio_tasks(struct ata_port *ap)
> +{
> + int tmp = 0;
> + unsigned long flags;
> +
> + DPRINTK("ENTER\n");
> +
> + spin_lock_irqsave(&ap->host_set->lock, flags);
> + ap->flags |= ATA_FLAG_FLUSH_PIO_TASK;
> + spin_unlock_irqrestore(&ap->host_set->lock, flags);
> +
> + DPRINTK("flush #1\n");
> + flush_workqueue(ata_wq);
> +
> + /*
> + * At this point, if a task is running, it's guaranteed to see
> + * the FLUSH flag; thus, it will never queue pio tasks again.
> + * Cancel and flush.
> + */
> + tmp |= cancel_delayed_work(&ap->pio_task);
> + tmp |= cancel_delayed_work(&ap->packet_task);
> + if (!tmp) {
> + DPRINTK("flush #2\n");
> + flush_workqueue(ata_wq);
> + }
> +
> + spin_lock_irqsave(&ap->host_set->lock, flags);
> + ap->flags &= ~ATA_FLAG_FLUSH_PIO_TASK;
> + ap->hsm_task_state = HSM_ST_IDLE;
> + spin_unlock_irqrestore(&ap->host_set->lock, flags);
Mostly ok, except
1) forcing hsm_task_state to HSM_ST_IDLE seems unlikely to be correct.
The error handling code should already be doing that.
2) should break this patch up into two pieces: add and use new helpers,
and add flush code.
next prev parent reply other threads:[~2006-01-22 9:58 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-01-22 7:58 [PATCHSET] libata: various fixes related to EH Tejun Heo
2006-01-22 7:58 ` [PATCH 04/12] libata: add detailed AC_ERR_* flags Tejun Heo
2006-01-22 9:30 ` Jeff Garzik
2006-01-22 9:46 ` Tejun Heo
2006-01-22 9:50 ` Tejun Heo
2006-01-22 7:58 ` [PATCH 05/12] libata: return AC_ERR_* from issue functions Tejun Heo
2006-01-22 9:36 ` Jeff Garzik
2006-01-22 7:58 ` [PATCH 06/12] SCSI: export scsi_eh_finish_cmd() and scsi_eh_flush_done_q() Tejun Heo
2006-01-22 9:36 ` Jeff Garzik
2006-01-22 7:58 ` [PATCH 03/12] libata: fix ata_qc_issue() error handling Tejun Heo
2006-01-22 9:25 ` Jeff Garzik
2006-01-22 7:58 ` [PATCH 02/12] libata: make the owner of a qc responsible for freeing it Tejun Heo
2006-01-22 9:37 ` Jeff Garzik
2006-01-22 10:16 ` Tejun Heo
2006-01-22 7:58 ` [PATCH 01/12] libata: fold __ata_qc_complete() into ata_qc_free() Tejun Heo
2006-01-22 7:58 ` [PATCH 10/12] libata: implement ATA_FLAG_IN_EH port flag Tejun Heo
2006-01-22 9:49 ` Jeff Garzik
2006-01-22 7:58 ` [PATCH 11/12] libata: ignore normal qc completion during EH Tejun Heo
2006-01-22 9:53 ` Jeff Garzik
2006-01-22 11:09 ` Tejun Heo
2006-01-22 7:58 ` [PATCH 12/12] libata: EH / pio tasks synchronization Tejun Heo
2006-01-22 9:58 ` Jeff Garzik [this message]
2006-01-22 10:27 ` Tejun Heo
2006-01-22 7:58 ` [PATCH 09/12] libata: kill NULL qc handling from ->eng_timeout callbacks Tejun Heo
2006-01-22 7:58 ` [PATCH 08/12] libata: fix handling of race between timeout and completion Tejun Heo
2006-01-22 9:41 ` Jeff Garzik
2006-01-22 7:58 ` [PATCH 07/12] libata: implement and apply ata_eh_qc_complete/retry() Tejun Heo
2006-01-22 9:10 ` [PATCHSET] libata: various fixes related to EH Jeff Garzik
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=43D35733.1040609@pobox.com \
--to=jgarzik@pobox.com \
--cc=albertcc@tw.ibm.com \
--cc=htejun@gmail.com \
--cc=linux-ide@vger.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).