ide: pass error value to ide_complete_rq()
Set rq->errors at ide_complete_rq() call sites and then pass error value to ide_complete_rq(). [ Some rq->errors assignments look really wrong but this patch leaves them alone to not introduce too many changes at once. ] There should be no functional changes caused by this patch. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
这个提交包含在:
@@ -289,10 +289,12 @@ static void ide_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)
|
||||
|
||||
void ide_finish_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 stat)
|
||||
{
|
||||
struct request *rq = drive->hwif->rq;
|
||||
u8 err = ide_read_error(drive);
|
||||
|
||||
ide_complete_cmd(drive, cmd, stat, err);
|
||||
ide_complete_rq(drive, err);
|
||||
rq->errors = err;
|
||||
ide_complete_rq(drive, err ? -EIO : 0);
|
||||
}
|
||||
|
||||
/*
|
||||
|
在新工单中引用
屏蔽一个用户