浏览代码

[SCSI] lpfc 8.3.31: Fix driver crash during back-to-back ramp events

Signed-off-by: Alex Iannicelli <alex.iannicelli@emulex.com>
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
James Smart 13 年之前
父节点
当前提交
75ad83a452
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      drivers/scsi/lpfc/lpfc_scsi.c

+ 8 - 0
drivers/scsi/lpfc/lpfc_scsi.c

@@ -399,6 +399,14 @@ lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
 	num_rsrc_err = atomic_read(&phba->num_rsrc_err);
 	num_rsrc_err = atomic_read(&phba->num_rsrc_err);
 	num_cmd_success = atomic_read(&phba->num_cmd_success);
 	num_cmd_success = atomic_read(&phba->num_cmd_success);
 
 
+	/*
+	 * The error and success command counters are global per
+	 * driver instance.  If another handler has already
+	 * operated on this error event, just exit.
+	 */
+	if (num_rsrc_err == 0)
+		return;
+
 	vports = lpfc_create_vport_work_array(phba);
 	vports = lpfc_create_vport_work_array(phba);
 	if (vports != NULL)
 	if (vports != NULL)
 		for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
 		for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {