Commit f5ed7bd4 authored by Jayamohan Kallickal's avatar Jayamohan Kallickal Committed by James Bottomley
Browse files

[SCSI] be2iscsi: pass the return from beiscsi_open_conn



This patch passes on  the value returned by
beiscsi_open_conn

Signed-off-by: default avatarJayamohan Kallickal <jayamohank@serverengines.com>
Reviewed-by: default avatarMike Christie <michaelc@cs.wisc.edu>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent 03a12310
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -580,9 +580,9 @@ beiscsi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
	beiscsi_ep = ep->dd_data;
	beiscsi_ep = ep->dd_data;
	beiscsi_ep->phba = phba;
	beiscsi_ep->phba = phba;
	beiscsi_ep->openiscsi_ep = ep;
	beiscsi_ep->openiscsi_ep = ep;
	if (beiscsi_open_conn(ep, NULL, dst_addr, non_blocking)) {
	ret = beiscsi_open_conn(ep, NULL, dst_addr, non_blocking);
	if (ret) {
		SE_DEBUG(DBG_LVL_1, "Failed in beiscsi_open_conn\n");
		SE_DEBUG(DBG_LVL_1, "Failed in beiscsi_open_conn\n");
		ret = -ENOMEM;
		goto free_ep;
		goto free_ep;
	}
	}