From: SeongJae Park Date: Fri, 5 Nov 2021 20:46:06 +0000 (-0700) Subject: mm/damon/core: print kdamond start log in debug mode only X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=704571f997424ecd64b10b37ca6097e65690240a;p=linux.git mm/damon/core: print kdamond start log in debug mode only Logging of kdamond startup is using 'pr_info()' unnecessarily. This makes it to use 'pr_debug()' instead. Link: https://lkml.kernel.org/r/20210917123958.3819-6-sj@kernel.org Signed-off-by: SeongJae Park Cc: Jonathan Corbet Cc: SeongJae Park Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/damon/core.c b/mm/damon/core.c index 30e9211f494a7..874558a790a0f 100644 --- a/mm/damon/core.c +++ b/mm/damon/core.c @@ -653,7 +653,7 @@ static int kdamond_fn(void *data) unsigned long sz_limit = 0; mutex_lock(&ctx->kdamond_lock); - pr_info("kdamond (%d) starts\n", ctx->kdamond->pid); + pr_debug("kdamond (%d) starts\n", ctx->kdamond->pid); mutex_unlock(&ctx->kdamond_lock); if (ctx->primitive.init)