From: Andreas Dilger Date: Tue, 19 Jun 2012 04:31:24 +0000 (-0600) Subject: LU-1095 debug: fix missing CDEBUG() newline X-Git-Tag: 2.2.58~27 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=938f645db07ee57bcc0f6b687cf60044d161ed50 LU-1095 debug: fix missing CDEBUG() newline 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 Change-Id: Ie5eed2977e496e082d5b8e62bfc39e0df93fcab0 Reviewed-on: http://review.whamcloud.com/3134 Reviewed-by: Li Wei Tested-by: Hudson Tested-by: Maloo --- diff --git a/lustre/ldlm/ldlm_lib.c b/lustre/ldlm/ldlm_lib.c index 31d55f4..c6ba490 100644 --- a/lustre/ldlm/ldlm_lib.c +++ b/lustre/ldlm/ldlm_lib.c @@ -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