diff options
author | Tejun Heo <htejun@gmail.com> | 2006-11-20 07:05:34 (GMT) |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-12-02 03:47:03 (GMT) |
commit | 664e8503fee2f299d0f96eaab0f5f8fae8fad325 (patch) | |
tree | 253dbba43a95e58b168a3876269d2b32b624433d /drivers/ata | |
parent | 2dec7555e6bf2772749113ea0ad454fcdb8cf861 (diff) | |
download | linux-664e8503fee2f299d0f96eaab0f5f8fae8fad325.tar.xz |
[PATCH] libata: print cdb[0] in failed qc report
Print cdb[0] in failed qc report.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-eh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index 3771eb8..5aa7f09 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c @@ -1452,14 +1452,15 @@ static void ata_eh_report(struct ata_port *ap) ata_dev_printk(qc->dev, KERN_ERR, "cmd %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x " - "tag %d data %u %s\n " + "tag %d cdb 0x%x data %u %s\n " "res %02x/%02x:%02x:%02x:%02x:%02x/%02x:%02x:%02x:%02x:%02x/%02x " "Emask 0x%x (%s)\n", cmd->command, cmd->feature, cmd->nsect, cmd->lbal, cmd->lbam, cmd->lbah, cmd->hob_feature, cmd->hob_nsect, cmd->hob_lbal, cmd->hob_lbam, cmd->hob_lbah, - cmd->device, qc->tag, nbytes, dma_str[qc->dma_dir], + cmd->device, qc->tag, qc->cdb[0], nbytes, + dma_str[qc->dma_dir], res->command, res->feature, res->nsect, res->lbal, res->lbam, res->lbah, res->hob_feature, res->hob_nsect, |