scsi: qedf: Fix lport may be used uninitialized warning
- lport was getting used without initialization, initialize it to fix a warning. Signed-off-by: Saurav Kashyap <skashyap@marvell.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
fe2043d19e
commit
efc8fe9b6c
|
@ -2356,7 +2356,7 @@ int qedf_initiate_tmf(struct scsi_cmnd *sc_cmd, u8 tm_flags)
|
||||||
struct fc_rport_libfc_priv *rp = rport->dd_data;
|
struct fc_rport_libfc_priv *rp = rport->dd_data;
|
||||||
struct qedf_rport *fcport = (struct qedf_rport *)&rp[1];
|
struct qedf_rport *fcport = (struct qedf_rport *)&rp[1];
|
||||||
struct qedf_ctx *qedf;
|
struct qedf_ctx *qedf;
|
||||||
struct fc_lport *lport;
|
struct fc_lport *lport = shost_priv(sc_cmd->device->host);
|
||||||
int rc = SUCCESS;
|
int rc = SUCCESS;
|
||||||
int rval;
|
int rval;
|
||||||
struct qedf_ioreq *io_req = NULL;
|
struct qedf_ioreq *io_req = NULL;
|
||||||
|
@ -2410,8 +2410,6 @@ int qedf_initiate_tmf(struct scsi_cmnd *sc_cmd, u8 tm_flags)
|
||||||
goto tmf_err;
|
goto tmf_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
lport = qedf->lport;
|
|
||||||
|
|
||||||
if (test_bit(QEDF_RPORT_UPLOADING_CONNECTION, &fcport->flags)) {
|
if (test_bit(QEDF_RPORT_UPLOADING_CONNECTION, &fcport->flags)) {
|
||||||
QEDF_ERR(&qedf->dbg_ctx, "Connection is getting uploaded.\n");
|
QEDF_ERR(&qedf->dbg_ctx, "Connection is getting uploaded.\n");
|
||||||
rc = SUCCESS;
|
rc = SUCCESS;
|
||||||
|
|
Loading…
Reference in New Issue