Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 617757de authored by Maurizio Lombardi's avatar Maurizio Lombardi Committed by Martin K. Petersen
Browse files

bnx2fc: bnx2fc_eh_abort(): fix wrong return code.



If the link is not ready, the bnx2fc_eh_abort() function should return
FAILED.

Signed-off-by: default avatarMaurizio Lombardi <mlombard@redhat.com>
Reviewed-by: default avatarEwan Milne <emilne@redhat.com>
Acked-by: default avatarChad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent d4faee08
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1104,8 +1104,7 @@ int bnx2fc_eh_abort(struct scsi_cmnd *sc_cmd)
	struct bnx2fc_cmd *io_req;
	struct fc_lport *lport;
	struct bnx2fc_rport *tgt;
	int rc = FAILED;

	int rc;

	rc = fc_block_scsi_eh(sc_cmd);
	if (rc)
@@ -1114,7 +1113,7 @@ int bnx2fc_eh_abort(struct scsi_cmnd *sc_cmd)
	lport = shost_priv(sc_cmd->device->host);
	if ((lport->state != LPORT_ST_READY) || !(lport->link_up)) {
		printk(KERN_ERR PFX "eh_abort: link not ready\n");
		return rc;
		return FAILED;
	}

	tgt = (struct bnx2fc_rport *)&rp[1];