From: Saurav Kashyap <saurav.kash...@cavium.com>

- Print the fcoe_libfc_config failure and return proper failure.

Signed-off-by: Saurav Kashyap <saurav.kash...@cavium.com>
Signed-off-by: Chad Dupuis <chad.dup...@cavium.com>
---
 drivers/scsi/qedf/qedf_main.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c
index ffaf8f9..a527b9b 100644
--- a/drivers/scsi/qedf/qedf_main.c
+++ b/drivers/scsi/qedf/qedf_main.c
@@ -1618,7 +1618,11 @@ static int qedf_lport_setup(struct qedf_ctx *qedf)
        fc_set_wwnn(lport, qedf->wwnn);
        fc_set_wwpn(lport, qedf->wwpn);
 
-       fcoe_libfc_config(lport, &qedf->ctlr, &qedf_lport_template, 0);
+       if (fcoe_libfc_config(lport, &qedf->ctlr, &qedf_lport_template, 0)) {
+               QEDF_ERR(&qedf->dbg_ctx,
+                        "fcoe_libfc_config failed.\n");
+               return -ENOMEM;
+       }
 
        /* Allocate the exchange manager */
        fc_exch_mgr_alloc(lport, FC_CLASS_3, FCOE_PARAMS_NUM_TASKS,
-- 
1.8.3.1

Reply via email to