mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
scsi: only re-lock door after EH on devices that were reset
commit 48379270fe
upstream.
Setups that use the blk-mq I/O path can lock up if a host with a single
device that has its door locked enters EH. Make sure to only send the
command to re-lock the door to devices that actually were reset and thus
might have lost their state. Otherwise the EH code might be get blocked
on blk_get_request as all requests for non-reset devices might be in use.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reported-by: Meelis Roos <meelis.roos@ut.ee>
Tested-by: Meelis Roos <meelis.roos@ut.ee>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Zefan Li <lizefan@huawei.com>
This commit is contained in:
parent
e3412bce0c
commit
3b5d98d447
1 changed files with 3 additions and 1 deletions
|
@ -1679,8 +1679,10 @@ static void scsi_restart_operations(struct Scsi_Host *shost)
|
|||
* is no point trying to lock the door of an off-line device.
|
||||
*/
|
||||
shost_for_each_device(sdev, shost) {
|
||||
if (scsi_device_online(sdev) && sdev->locked)
|
||||
if (scsi_device_online(sdev) && sdev->was_reset && sdev->locked) {
|
||||
scsi_eh_lock_door(sdev);
|
||||
sdev->was_reset = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue