mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-15 13:22:55 +00:00
[SCSI] ibmvscsi: Fix slave_configure deadlock
No locks should be held when calling scsi_adjust_queue_depth so drop the lock in slave_configure prior to calling it. Signed-off-by: Brian King <brking@linux.vnet.ibm.com> Acked-by: Robert Jennings <rcj@linux.vnet.ibm.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
231ff54e4c
commit
9d85b59005
@ -1899,8 +1899,8 @@ static int ibmvscsi_slave_configure(struct scsi_device *sdev)
|
|||||||
sdev->allow_restart = 1;
|
sdev->allow_restart = 1;
|
||||||
blk_queue_rq_timeout(sdev->request_queue, 120 * HZ);
|
blk_queue_rq_timeout(sdev->request_queue, 120 * HZ);
|
||||||
}
|
}
|
||||||
scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
|
|
||||||
spin_unlock_irqrestore(shost->host_lock, lock_flags);
|
spin_unlock_irqrestore(shost->host_lock, lock_flags);
|
||||||
|
scsi_adjust_queue_depth(sdev, 0, shost->cmd_per_lun);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user