[PATCH] libata: report device number when PIO fails
Report device number on PIO failure. Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
565083e1f1
commit
d63cb4a636
|
@ -3909,7 +3909,8 @@ static void ata_pio_error(struct ata_port *ap)
|
||||||
WARN_ON(qc == NULL);
|
WARN_ON(qc == NULL);
|
||||||
|
|
||||||
if (qc->tf.command != ATA_CMD_PACKET)
|
if (qc->tf.command != ATA_CMD_PACKET)
|
||||||
printk(KERN_WARNING "ata%u: PIO error\n", ap->id);
|
printk(KERN_WARNING "ata%u: dev %u PIO error\n",
|
||||||
|
ap->id, qc->dev->devno);
|
||||||
|
|
||||||
/* make sure qc->err_mask is available to
|
/* make sure qc->err_mask is available to
|
||||||
* know what's wrong and recover
|
* know what's wrong and recover
|
||||||
|
|
Loading…
Reference in New Issue