diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2006-11-13 18:05:02 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-11-13 09:47:00 -0800 |
commit | b71567312976305cc1ce7e9b71e7378c8bfcb40f (patch) | |
tree | 93b930159592e668630744d40ab1208caee1de1f /drivers | |
parent | 616e8a091a035c0bd9b871695f4af191df123caa (diff) | |
download | kernel_samsung_tuna-b71567312976305cc1ce7e9b71e7378c8bfcb40f.zip kernel_samsung_tuna-b71567312976305cc1ce7e9b71e7378c8bfcb40f.tar.gz kernel_samsung_tuna-b71567312976305cc1ce7e9b71e7378c8bfcb40f.tar.bz2 |
[PATCH] ide-cd: only set rq->errors SCSI style for block pc requests
We should only set ->errors to CHECK_CONDITION and so on for requests
that use this field in the SCSI manner.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ide/ide-cd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c index bddfebd..8821494 100644 --- a/drivers/ide/ide-cd.c +++ b/drivers/ide/ide-cd.c @@ -724,7 +724,7 @@ static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret) * if we have an error, pass back CHECK_CONDITION as the * scsi status byte */ - if (!rq->errors) + if (blk_pc_request(rq) && !rq->errors) rq->errors = SAM_STAT_CHECK_CONDITION; /* Check for tray open. */ |