mirror of https://gitee.com/openkylin/linux.git
[SCSI] qla2xxx: Prevent CPU lockups when "ql2xdontresethba" module param is set.
Driver is not releasing the lock if ql2xdontresethba is set, this might lead to a lockup. Signed-off-by: Saurav Kashyap <saurav.kashyap@qlogic.com> Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
999916dc59
commit
c8582ad95b
|
@ -3763,6 +3763,11 @@ qla82xx_device_state_handler(scsi_qla_host_t *vha)
|
|||
case QLA82XX_DEV_NEED_RESET:
|
||||
if (!ql2xdontresethba)
|
||||
qla82xx_need_reset_handler(vha);
|
||||
else {
|
||||
qla82xx_idc_unlock(ha);
|
||||
msleep(1000);
|
||||
qla82xx_idc_lock(ha);
|
||||
}
|
||||
dev_init_timeout = jiffies +
|
||||
(ha->nx_dev_init_timeout * HZ);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue