From: Dan Carpenter Date: Fri, 19 Jun 2020 14:30:41 +0000 (+0300) Subject: scsi: qla2xxx: Fix a condition in qla2x00_find_all_fabric_devs() X-Git-Tag: v5.7.8~45 X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=0376dddf54afbd28c27765aadf0afb299d6be32e;p=wrapfs-5.3.y.git scsi: qla2xxx: Fix a condition in qla2x00_find_all_fabric_devs() [ Upstream commit 1fc98aaf7f85fadcca57c4a86ef17e1940cad2d3 ] This code doesn't make sense unless the correct "fcport" was found. Link: https://lore.kernel.org/r/20200619143041.GD267142@mwanda Fixes: 9dd9686b1419 ("scsi: qla2xxx: Add changes for devloss timeout in driver") Reviewed-by: Himanshu Madhani Reviewed-by: Shyam Sundar Signed-off-by: Dan Carpenter Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index caa6b840e459..cfbb4294fb8b 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -5933,7 +5933,7 @@ qla2x00_find_all_fabric_devs(scsi_qla_host_t *vha) break; } - if (NVME_TARGET(vha->hw, fcport)) { + if (found && NVME_TARGET(vha->hw, fcport)) { if (fcport->disc_state == DSC_DELETE_PEND) { qla2x00_set_fcport_disc_state(fcport, DSC_GNL); vha->fcport_count--;