Commit 60f5d6ef authored by Tejun Heo's avatar Tejun Heo Committed by Jeff Garzik

libata: be less of a drama queen on empty data commands

ata_qc_issue() BUG_ON()s on data commands w/o data, which may be
submitted via SG_IO.  Be less of a drama queen and just trigger
WARN_ON_ONCE() and fail the command with AC_ERR_SYSTEM.
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Reported-by: default avatarStefan Hübner <stefan.huebner@stud.tu-ilmenau.de>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent d26377b8
...@@ -5111,15 +5111,18 @@ void ata_qc_issue(struct ata_queued_cmd *qc) ...@@ -5111,15 +5111,18 @@ void ata_qc_issue(struct ata_queued_cmd *qc)
qc->flags |= ATA_QCFLAG_ACTIVE; qc->flags |= ATA_QCFLAG_ACTIVE;
ap->qc_active |= 1 << qc->tag; ap->qc_active |= 1 << qc->tag;
/* We guarantee to LLDs that they will have at least one /*
* We guarantee to LLDs that they will have at least one
* non-zero sg if the command is a data command. * non-zero sg if the command is a data command.
*/ */
BUG_ON(ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes)); if (WARN_ON_ONCE(ata_is_data(prot) &&
(!qc->sg || !qc->n_elem || !qc->nbytes)))
goto sys_err;
if (ata_is_dma(prot) || (ata_is_pio(prot) && if (ata_is_dma(prot) || (ata_is_pio(prot) &&
(ap->flags & ATA_FLAG_PIO_DMA))) (ap->flags & ATA_FLAG_PIO_DMA)))
if (ata_sg_setup(qc)) if (ata_sg_setup(qc))
goto sg_err; goto sys_err;
/* if device is sleeping, schedule reset and abort the link */ /* if device is sleeping, schedule reset and abort the link */
if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) { if (unlikely(qc->dev->flags & ATA_DFLAG_SLEEPING)) {
...@@ -5136,7 +5139,7 @@ void ata_qc_issue(struct ata_queued_cmd *qc) ...@@ -5136,7 +5139,7 @@ void ata_qc_issue(struct ata_queued_cmd *qc)
goto err; goto err;
return; return;
sg_err: sys_err:
qc->err_mask |= AC_ERR_SYSTEM; qc->err_mask |= AC_ERR_SYSTEM;
err: err:
ata_qc_complete(qc); ata_qc_complete(qc);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment