[SCSI] Fix erratic device offline during EH
Commit18a4d0a22e
(Handle disk devices which can not process medium access commands) was introduced to offline any device which cannot process medium access commands. However, commit3eef6257de
(Reduce error recovery time by reducing use of TURs) reduced the number of TURs by sending it only on the first failing command, which might or might not be a medium access command. So in combination this results in an erratic device offlining during EH; if the command where the TUR was sent upon happens to be a medium access command the device will be set offline, if not everything proceeds as normal. This patch moves the check to the final test, eliminating this problem. 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
1a4049ddfd
commit
2451079bc2
@@ -16,7 +16,7 @@ struct scsi_driver {
|
||||
|
||||
void (*rescan)(struct device *);
|
||||
int (*done)(struct scsi_cmnd *);
|
||||
int (*eh_action)(struct scsi_cmnd *, unsigned char *, int, int);
|
||||
int (*eh_action)(struct scsi_cmnd *, int);
|
||||
};
|
||||
#define to_scsi_driver(drv) \
|
||||
container_of((drv), struct scsi_driver, gendrv)
|
||||
|
Reference in New Issue
Block a user