Whamcloud - gitweb
LU-1095 debug: fix missing CDEBUG() newline
authorAndreas Dilger <adilger@whamcloud.com>
Tue, 19 Jun 2012 04:31:24 +0000 (22:31 -0600)
committerAndreas Dilger <adilger@whamcloud.com>
Fri, 22 Jun 2012 07:08:27 +0000 (03:08 -0400)
The console message cleanup 389fde827be2ee6fb4ee08e955d773a2a16e70c6
lost a newline in one of the messages, which itself generates a
warning on the console.

Signed-off-by: Andreas Dilger <adilger@whamcloud.com>
Change-Id: Ie5eed2977e496e082d5b8e62bfc39e0df93fcab0
Reviewed-on: http://review.whamcloud.com/3134
Reviewed-by: Li Wei <liwei@whamcloud.com>
Tested-by: Hudson
Tested-by: Maloo <whamcloud.maloo@gmail.com>
lustre/ldlm/ldlm_lib.c

index 31d55f4..c6ba490 100644 (file)
@@ -654,14 +654,13 @@ static int target_handle_reconnect(struct lustre_handle *conn,
                          * doing a valid reconnect from the same client. */
                         RETURN(EALREADY);
                 } else {
-                        LCONSOLE_WARN("%s: The server has already connected "
-                                      "client %s (at %s) with handle " LPX64
-                                      ", rejecting a client with the same "
-                                      "uuid trying to reconnect with "
-                                      "handle " LPX64, target->obd_name,
-                                      obd_uuid2str(&exp->exp_client_uuid),
-                                      obd_export_nid2str(exp),
-                                      hdl->cookie, conn->cookie);
+                       LCONSOLE_WARN("%s: already connected client %s (at %s) "
+                                     "with handle "LPX64". Rejecting client "
+                                     "with the same UUID trying to reconnect "
+                                     "with handle "LPX64"\n", target->obd_name,
+                                     obd_uuid2str(&exp->exp_client_uuid),
+                                     obd_export_nid2str(exp),
+                                     hdl->cookie, conn->cookie);
                         memset(conn, 0, sizeof *conn);
                         /* target_handle_connect() treats EALREADY and
                          * -EALREADY differently.  -EALREADY is an error