From: Ashish Purkar Date: Thu, 20 Aug 2015 21:12:16 +0000 (+0900) Subject: LU-7029 osc: fix debug log message formatting X-Git-Tag: 2.7.59~45 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=refs%2Fchanges%2F46%2F16046%2F2;p=fs%2Flustre-release.git LU-7029 osc: fix debug log message formatting Corrected newline specifier in debug log message. Signed-off-by: Ashish Purkar Change-Id: Id7928648bbe6d8e00d36a9f05a90aaf732b0595a Reviewed-on: http://review.whamcloud.com/16046 Tested-by: Jenkins Reviewed-by: Andreas Dilger Reviewed-by: Oleg Drokin --- diff --git a/lustre/osc/osc_page.c b/lustre/osc/osc_page.c index d5d3ed7..754fe82 100644 --- a/lustre/osc/osc_page.c +++ b/lustre/osc/osc_page.c @@ -597,7 +597,7 @@ static void osc_lru_del(struct client_obd *cli, struct osc_page *opg) * this osc occupies too many LRU pages and kernel is * stealing one of them. */ if (osc_cache_too_much(cli)) { - CDEBUG(D_CACHE, "%s: queue LRU workn", cli_name(cli)); + CDEBUG(D_CACHE, "%s: queue LRU work\n", cli_name(cli)); (void)ptlrpcd_queue_work(cli->cl_lru_work); } wake_up(&osc_lru_waitq);