ide: move rq->errors quirk out from ide_end_request()
Move rq->errors quirk out from ide_end_request() to its call sites. There should be no functional changes caused by this patch. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
6902a53312
commit
89f78b3261
|
@ -405,8 +405,13 @@ static ide_startstop_t ide_pc_intr(ide_drive_t *drive)
|
||||||
if (blk_special_request(rq)) {
|
if (blk_special_request(rq)) {
|
||||||
rq->errors = 0;
|
rq->errors = 0;
|
||||||
ide_complete_rq(drive, 0);
|
ide_complete_rq(drive, 0);
|
||||||
} else
|
} else {
|
||||||
|
if (blk_fs_request(rq) == 0 && uptodate <= 0) {
|
||||||
|
if (rq->errors == 0)
|
||||||
|
rq->errors = -EIO;
|
||||||
|
}
|
||||||
ide_end_request(drive, uptodate, 0);
|
ide_end_request(drive, uptodate, 0);
|
||||||
|
}
|
||||||
|
|
||||||
return ide_stopped;
|
return ide_stopped;
|
||||||
}
|
}
|
||||||
|
|
|
@ -295,6 +295,9 @@ static void cdrom_end_request(ide_drive_t *drive, int uptodate)
|
||||||
ide_debug_log(IDE_DBG_FUNC, "uptodate: 0x%x, nsectors: %d",
|
ide_debug_log(IDE_DBG_FUNC, "uptodate: 0x%x, nsectors: %d",
|
||||||
uptodate, nsectors);
|
uptodate, nsectors);
|
||||||
|
|
||||||
|
if (blk_fs_request(rq) == 0 && uptodate <= 0 && rq->errors == 0)
|
||||||
|
rq->errors = -EIO;
|
||||||
|
|
||||||
ide_end_request(drive, uptodate, nsectors);
|
ide_end_request(drive, uptodate, nsectors);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -184,6 +184,8 @@ static ide_startstop_t ide_do_rw_disk(ide_drive_t *drive, struct request *rq,
|
||||||
|
|
||||||
if (!blk_fs_request(rq)) {
|
if (!blk_fs_request(rq)) {
|
||||||
blk_dump_rq_flags(rq, "ide_do_rw_disk - bad command");
|
blk_dump_rq_flags(rq, "ide_do_rw_disk - bad command");
|
||||||
|
if (rq->errors == 0)
|
||||||
|
rq->errors = -EIO;
|
||||||
ide_end_request(drive, 0, 0);
|
ide_end_request(drive, 0, 0);
|
||||||
return ide_stopped;
|
return ide_stopped;
|
||||||
}
|
}
|
||||||
|
|
|
@ -146,8 +146,11 @@ static inline void ide_complete_drive_reset(ide_drive_t *drive, int err)
|
||||||
{
|
{
|
||||||
struct request *rq = drive->hwif->rq;
|
struct request *rq = drive->hwif->rq;
|
||||||
|
|
||||||
if (rq && blk_special_request(rq) && rq->cmd[0] == REQ_DRIVE_RESET)
|
if (rq && blk_special_request(rq) && rq->cmd[0] == REQ_DRIVE_RESET) {
|
||||||
|
if (err <= 0 && rq->errors == 0)
|
||||||
|
rq->errors = -EIO;
|
||||||
ide_end_request(drive, err ? err : 1, 0);
|
ide_end_request(drive, err ? err : 1, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* needed below */
|
/* needed below */
|
||||||
|
|
|
@ -298,6 +298,8 @@ static ide_startstop_t ide_floppy_do_request(ide_drive_t *drive,
|
||||||
return idefloppy_issue_pc(drive, pc);
|
return idefloppy_issue_pc(drive, pc);
|
||||||
out_end:
|
out_end:
|
||||||
drive->failed_pc = NULL;
|
drive->failed_pc = NULL;
|
||||||
|
if (blk_fs_request(rq) == 0 && rq->errors == 0)
|
||||||
|
rq->errors = -EIO;
|
||||||
ide_end_request(drive, 0, 0);
|
ide_end_request(drive, 0, 0);
|
||||||
return ide_stopped;
|
return ide_stopped;
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,9 +102,6 @@ int ide_end_request (ide_drive_t *drive, int uptodate, int nr_sectors)
|
||||||
if (blk_noretry_request(rq) && uptodate <= 0)
|
if (blk_noretry_request(rq) && uptodate <= 0)
|
||||||
nr_bytes = rq->hard_nr_sectors << 9;
|
nr_bytes = rq->hard_nr_sectors << 9;
|
||||||
|
|
||||||
if (blk_fs_request(rq) == 0 && uptodate <= 0 && rq->errors == 0)
|
|
||||||
rq->errors = -EIO;
|
|
||||||
|
|
||||||
if (uptodate <= 0)
|
if (uptodate <= 0)
|
||||||
error = uptodate ? uptodate : -EIO;
|
error = uptodate ? uptodate : -EIO;
|
||||||
|
|
||||||
|
@ -169,6 +166,8 @@ void ide_kill_rq(ide_drive_t *drive, struct request *rq)
|
||||||
} else {
|
} else {
|
||||||
if (media == ide_tape)
|
if (media == ide_tape)
|
||||||
rq->errors = IDE_DRV_ERROR_GENERAL;
|
rq->errors = IDE_DRV_ERROR_GENERAL;
|
||||||
|
else if (blk_fs_request(rq) == 0 && rq->errors == 0)
|
||||||
|
rq->errors = -EIO;
|
||||||
ide_end_request(drive, 0, 0);
|
ide_end_request(drive, 0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -760,6 +760,8 @@ static ide_startstop_t idetape_do_request(ide_drive_t *drive,
|
||||||
/* We do not support buffer cache originated requests. */
|
/* We do not support buffer cache originated requests. */
|
||||||
printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
|
printk(KERN_NOTICE "ide-tape: %s: Unsupported request in "
|
||||||
"request queue (%d)\n", drive->name, rq->cmd_type);
|
"request queue (%d)\n", drive->name, rq->cmd_type);
|
||||||
|
if (blk_fs_request(rq) == 0 && rq->errors == 0)
|
||||||
|
rq->errors = -EIO;
|
||||||
ide_end_request(drive, 0, 0);
|
ide_end_request(drive, 0, 0);
|
||||||
return ide_stopped;
|
return ide_stopped;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue