[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1466982072-29836-2-git-send-email-anton@ozlabs.org>
Date: Mon, 27 Jun 2016 09:01:12 +1000
From: Anton Blanchard <anton@...abs.org>
To: akpm@...ux-foundation.org, oleg@...hat.com, hannes@...xchg.org,
mingo@...nel.org, fweisbec@...il.com, jkosina@...e.com
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH 2/2] mm: workingset: printk missing log level, use pr_info()
From: Anton Blanchard <anton@...ba.org>
commit 612e44939c3c ("mm: workingset: eviction buckets for bigmem/lowbit
machines") added a printk without a log level. Quieten it by using
pr_info().
Signed-off-by: Anton Blanchard <anton@...ba.org>
---
mm/workingset.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/workingset.c b/mm/workingset.c
index 8a75f8d..5772775 100644
--- a/mm/workingset.c
+++ b/mm/workingset.c
@@ -491,7 +491,7 @@ static int __init workingset_init(void)
max_order = fls_long(totalram_pages - 1);
if (max_order > timestamp_bits)
bucket_order = max_order - timestamp_bits;
- printk("workingset: timestamp_bits=%d max_order=%d bucket_order=%u\n",
+ pr_info("workingset: timestamp_bits=%d max_order=%d bucket_order=%u\n",
timestamp_bits, max_order, bucket_order);
ret = list_lru_init_key(&workingset_shadow_nodes, &shadow_nodes_key);
--
2.7.4
Powered by blists - more mailing lists