[SCSI] Return ENODATA on medium error
When a medium error is detected the SCSI stack should return ENODATA to the upper layers. [jejb: fix whitespace error] Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:

committed by
James Bottomley

parent
a9d6ceb838
commit
7e782af576
@@ -371,7 +371,7 @@ static int scsi_check_sense(struct scsi_cmnd *scmd)
|
||||
if (sshdr.asc == 0x11 || /* UNRECOVERED READ ERR */
|
||||
sshdr.asc == 0x13 || /* AMNF DATA FIELD */
|
||||
sshdr.asc == 0x14) { /* RECORD NOT FOUND */
|
||||
set_host_byte(scmd, DID_TARGET_FAILURE);
|
||||
set_host_byte(scmd, DID_MEDIUM_ERROR);
|
||||
return SUCCESS;
|
||||
}
|
||||
return NEEDS_RETRY;
|
||||
|
Reference in New Issue
Block a user