aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/be2iscsi
diff options
context:
space:
mode:
authorJayamohan Kallickal <jayamohank@serverengines.com>2010-07-21 18:48:01 -0400
committerJames Bottomley <James.Bottomley@suse.de>2010-07-28 10:05:30 -0400
commitf5ed7bd4c6ca5fcec77d3007779d38f63cbb95f4 (patch)
tree93817d85fb3bf03cbb285c4c3b9de69247a80ff7 /drivers/scsi/be2iscsi
parent03a1231009927b7168d6d86a7a7f6c7f9b4be85a (diff)
[SCSI] be2iscsi: pass the return from beiscsi_open_conn
This patch passes on the value returned by beiscsi_open_conn Signed-off-by: Jayamohan Kallickal <jayamohank@serverengines.com> Reviewed-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/be2iscsi')
-rw-r--r--drivers/scsi/be2iscsi/be_iscsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/be2iscsi/be_iscsi.c b/drivers/scsi/be2iscsi/be_iscsi.c
index cd1b8301036d..4f3c2a4079df 100644
--- a/drivers/scsi/be2iscsi/be_iscsi.c
+++ b/drivers/scsi/be2iscsi/be_iscsi.c
@@ -580,9 +580,9 @@ beiscsi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
580 beiscsi_ep = ep->dd_data; 580 beiscsi_ep = ep->dd_data;
581 beiscsi_ep->phba = phba; 581 beiscsi_ep->phba = phba;
582 beiscsi_ep->openiscsi_ep = ep; 582 beiscsi_ep->openiscsi_ep = ep;
583 if (beiscsi_open_conn(ep, NULL, dst_addr, non_blocking)) { 583 ret = beiscsi_open_conn(ep, NULL, dst_addr, non_blocking);
584 if (ret) {
584 SE_DEBUG(DBG_LVL_1, "Failed in beiscsi_open_conn\n"); 585 SE_DEBUG(DBG_LVL_1, "Failed in beiscsi_open_conn\n");
585 ret = -ENOMEM;
586 goto free_ep; 586 goto free_ep;
587 } 587 }
588 588