Signed-off-by: Robert Love <[EMAIL PROTECTED]>
---

 drivers/scsi/libfc/fc_lport.c |    4 ++--
 drivers/scsi/libfc/fc_ns.c    |    4 ++--
 drivers/scsi/libfc/fc_rport.c |    3 ++-
 3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c
index 33cd556..1ecfed7 100644
--- a/drivers/scsi/libfc/fc_lport.c
+++ b/drivers/scsi/libfc/fc_lport.c
@@ -473,14 +473,14 @@ static void fc_lport_retry(struct fc_lport *lp)
 {
        if (lp->retry_count == 0)
                FC_DBG("local port %6x alloc failure in state %s "
-                      "- will retry", lp->fid, fc_lport_state(lp));
+                      "- will retry\n", lp->fid, fc_lport_state(lp));
        if (lp->retry_count < lp->max_retry_count) {
                lp->retry_count++;
                mod_timer(&lp->state_timer,
                          jiffies + msecs_to_jiffies(lp->e_d_tov));
        } else {
                FC_DBG("local port %6x alloc failure in state %s "
-                      "- retries exhausted", lp->fid,
+                      "- retries exhausted\n", lp->fid,
                       fc_lport_state(lp));
                fc_lport_enter_reject(lp);
        }
diff --git a/drivers/scsi/libfc/fc_ns.c b/drivers/scsi/libfc/fc_ns.c
index 069ef2b..80466f1 100644
--- a/drivers/scsi/libfc/fc_ns.c
+++ b/drivers/scsi/libfc/fc_ns.c
@@ -465,14 +465,14 @@ static void fc_ns_retry(struct fc_lport *lp)
 {
        if (lp->retry_count == 0)
                FC_DBG("local port %6x alloc failure "
-                      "- will retry", lp->fid);
+                      "- will retry\n", lp->fid);
        if (lp->retry_count < lp->max_retry_count) {
                lp->retry_count++;
                mod_timer(&lp->state_timer,
                          jiffies + msecs_to_jiffies(lp->e_d_tov));
        } else {
                FC_DBG("local port %6x alloc failure "
-                      "- retries exhausted", lp->fid);
+                      "- retries exhausted\n", lp->fid);
                fc_ns_enter_reject(lp);
        }
 }
diff --git a/drivers/scsi/libfc/fc_rport.c b/drivers/scsi/libfc/fc_rport.c
index 9e9c554..50f7fa6 100644
--- a/drivers/scsi/libfc/fc_rport.c
+++ b/drivers/scsi/libfc/fc_rport.c
@@ -462,7 +462,8 @@ static void fc_rport_retry(struct fc_rport *rport)
                schedule_delayed_work(&rp->retry_work,
                                      msecs_to_jiffies(rp->e_d_tov));
        } else {
-               FC_DBG("sess %6x alloc failure in state %d, retries exhausted",
+               FC_DBG("sess %6x alloc failure in state %d, "
+                      "retries exhausted\n",
                       rport->port_id, rp->rp_state);
                fc_rport_reject(rport);
        }

_______________________________________________
devel mailing list
[email protected]
http://www.open-fcoe.org/mailman/listinfo/devel

Reply via email to