提交 c234fb00 编写于 作者: A Albert Lee 提交者: Jeff Garzik

[PATCH] libata-dev: Make the the in_wq check as an inline function

Make the the in_wq check easier to read as an inline function.
Signed-off-by: NAlbert Lee <albertcc@tw.ibm.com>
Signed-off-by: NJeff Garzik <jeff@garzik.org>
上级 c2bbc551
...@@ -3535,6 +3535,33 @@ static void atapi_pio_bytes(struct ata_queued_cmd *qc) ...@@ -3535,6 +3535,33 @@ static void atapi_pio_bytes(struct ata_queued_cmd *qc)
ap->hsm_task_state = HSM_ST_ERR; ap->hsm_task_state = HSM_ST_ERR;
} }
/**
* ata_hsm_ok_in_wq - Check if the qc can be handled in the workqueue.
* @ap: the target ata_port
* @qc: qc on going
*
* RETURNS:
* 1 if ok in workqueue, 0 otherwise.
*/
static inline int ata_hsm_ok_in_wq(struct ata_port *ap, struct ata_queued_cmd *qc)
{
if (qc->tf.flags & ATA_TFLAG_POLLING)
return 1;
if (ap->hsm_task_state == HSM_ST_FIRST) {
if (qc->tf.protocol == ATA_PROT_PIO &&
(qc->tf.flags & ATA_TFLAG_WRITE))
return 1;
if (is_atapi_taskfile(&qc->tf) &&
!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
return 1;
}
return 0;
}
/** /**
* ata_hsm_move - move the HSM to the next state. * ata_hsm_move - move the HSM to the next state.
* @ap: the target ata_port * @ap: the target ata_port
...@@ -3558,12 +3585,7 @@ static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc, ...@@ -3558,12 +3585,7 @@ static int ata_hsm_move(struct ata_port *ap, struct ata_queued_cmd *qc,
* like DMA polling into the workqueue. Notice that * like DMA polling into the workqueue. Notice that
* in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING). * in_wq is not equivalent to (qc->tf.flags & ATA_TFLAG_POLLING).
*/ */
WARN_ON(in_wq != ((qc->tf.flags & ATA_TFLAG_POLLING) || WARN_ON(in_wq != ata_hsm_ok_in_wq(ap, qc));
(ap->hsm_task_state == HSM_ST_FIRST &&
((qc->tf.protocol == ATA_PROT_PIO &&
(qc->tf.flags & ATA_TFLAG_WRITE)) ||
(is_atapi_taskfile(&qc->tf) &&
!(qc->dev->flags & ATA_DFLAG_CDB_INTR))))));
/* check error */ /* check error */
if (unlikely(status & (ATA_ERR | ATA_DF))) { if (unlikely(status & (ATA_ERR | ATA_DF))) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册