aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libata-scsi.c
diff options
context:
space:
mode:
authorAlan Cox <alan@lxorguk.ukuu.org.uk>2006-03-21 10:53:46 -0500
committerJeff Garzik <jeff@garzik.org>2006-03-21 21:21:32 -0500
commit2d2020242d14dc8caf83d7682d91368cff64290c (patch)
tree75dbc3bdd0e6119139e7a498aeb47000e099fa78 /drivers/scsi/libata-scsi.c
parentb6782728d703fa3f0e5478a8b89e49ea10b1fdd0 (diff)
[PATCH] libata: pick a less confusion "um dunno" error
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/scsi/libata-scsi.c')
-rw-r--r--drivers/scsi/libata-scsi.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c
index fc547ca295fa..dd954a23b357 100644
--- a/drivers/scsi/libata-scsi.c
+++ b/drivers/scsi/libata-scsi.c
@@ -511,13 +511,11 @@ void ata_to_sense_error(unsigned id, u8 drv_stat, u8 drv_err, u8 *sk, u8 *asc,
511 printk(KERN_WARNING "ata%u: no sense translation for status: 0x%02x\n", 511 printk(KERN_WARNING "ata%u: no sense translation for status: 0x%02x\n",
512 id, drv_stat); 512 id, drv_stat);
513 513
514 /* For our last chance pick, use medium read error because 514 /* We need a sensible error return here, which is tricky, and one
515 * it's much more common than an ATA drive telling you a write 515 that won't cause people to do things like return a disk wrongly */
516 * has failed. 516 *sk = ABORTED_COMMAND;
517 */ 517 *asc = 0x00;
518 *sk = MEDIUM_ERROR; 518 *ascq = 0x00;
519 *asc = 0x11; /* "unrecovered read error" */
520 *ascq = 0x04; /* "auto-reallocation failed" */
521 519
522 translate_done: 520 translate_done:
523 printk(KERN_ERR "ata%u: translated ATA stat/err 0x%02x/%02x to " 521 printk(KERN_ERR "ata%u: translated ATA stat/err 0x%02x/%02x to "