summaryrefslogtreecommitdiffstats
path: root/mm/workingset.c
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2016-07-14 15:07:41 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-07-15 01:54:27 -0400
commitd3d36c4b5c5fbdd68542be73ffd53eb210fbf7cf (patch)
tree758fbe15b273dfb6dbd7b40e2e59f2cc81e89db5 /mm/workingset.c
parent5a49973d7143ebbabd76e1dcd69ee42e349bb7b9 (diff)
mm: workingset: printk missing log level, use pr_info()
Commit 612e44939c3c ("mm: workingset: eviction buckets for bigmem/lowbit machines") added a printk without a log level. Quieten it by using pr_info(). Link: http://lkml.kernel.org/r/1466982072-29836-2-git-send-email-anton@ozlabs.org Signed-off-by: Anton Blanchard <anton@samba.org> Acked-by: Johannes Weiner <hannes@cmpxchg.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/workingset.c')
-rw-r--r--mm/workingset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/workingset.c b/mm/workingset.c
index 8a75f8d2916a..577277546d98 100644
--- a/mm/workingset.c
+++ b/mm/workingset.c
@@ -491,7 +491,7 @@ static int __init workingset_init(void)
491 max_order = fls_long(totalram_pages - 1); 491 max_order = fls_long(totalram_pages - 1);
492 if (max_order > timestamp_bits) 492 if (max_order > timestamp_bits)
493 bucket_order = max_order - timestamp_bits; 493 bucket_order = max_order - timestamp_bits;
494 printk("workingset: timestamp_bits=%d max_order=%d bucket_order=%u\n", 494 pr_info("workingset: timestamp_bits=%d max_order=%d bucket_order=%u\n",
495 timestamp_bits, max_order, bucket_order); 495 timestamp_bits, max_order, bucket_order);
496 496
497 ret = list_lru_init_key(&workingset_shadow_nodes, &shadow_nodes_key); 497 ret = list_lru_init_key(&workingset_shadow_nodes, &shadow_nodes_key);