From: Ashish Purkar Date: Sat, 3 Dec 2016 00:53:09 +0000 (-0500) Subject: staging: lustre: osc: fix debug log message formatting X-Git-Tag: v4.10-rc1~148^2~32 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ea1fb96b650ddf9f3362b2bc79f527912c5b132e;p=karo-tx-linux.git staging: lustre: osc: fix debug log message formatting Corrected newline specifier in debug log message. Signed-off-by: Ashish Purkar Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-7029 Reviewed-on: http://review.whamcloud.com/16046 Reviewed-by: Andreas Dilger Reviewed-by: Oleg Drokin Signed-off-by: James Simmons Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/osc/osc_page.c b/drivers/staging/lustre/lustre/osc/osc_page.c index a80a8479287a..c5129d14f69c 100644 --- a/drivers/staging/lustre/lustre/osc/osc_page.c +++ b/drivers/staging/lustre/lustre/osc/osc_page.c @@ -462,7 +462,7 @@ static void osc_lru_del(struct client_obd *cli, struct osc_page *opg) * 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);