diff mbox series

qedf: Fix uninitalize warning from kernel test robot.

Message ID 20240415073654.31859-1-skashyap@marvell.com (mailing list archive)
State Changes Requested
Headers show
Series qedf: Fix uninitalize warning from kernel test robot. | expand

Commit Message

Saurav Kashyap April 15, 2024, 7:36 a.m. UTC
Fixes uininitalize qedf warning.

Signed-off-by: Saurav Kashyap <skashyap@marvell.com>
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202403160959.uNobO4UE-lkp@intel.com/
---
 drivers/scsi/qedf/qedf_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Martin K. Petersen April 25, 2024, 1:12 a.m. UTC | #1
Saurav,

> Fixes uininitalize qedf warning.

Please send a v2 of the series with this fix applied.

Thanks!
diff mbox series

Patch

diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c
index d4563d28d98f..b97a8712d3f6 100644
--- a/drivers/scsi/qedf/qedf_main.c
+++ b/drivers/scsi/qedf/qedf_main.c
@@ -919,14 +919,14 @@  void qedf_ctx_soft_reset(struct fc_lport *lport)
 	struct qedf_ctx *qedf;
 	struct qed_link_output if_link;
 
+	qedf = lport_priv(lport);
+
 	if (lport->vport) {
 		clear_bit(QEDF_STAG_IN_PROGRESS, &qedf->flags);
 		printk_ratelimited("Cannot issue host reset on NPIV port.\n");
 		return;
 	}
 
-	qedf = lport_priv(lport);
-
 	qedf->flogi_pending = 0;
 	/* For host reset, essentially do a soft link up/down */
 	atomic_set(&qedf->link_state, QEDF_LINK_DOWN);