Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3d36c4b authored by Anton Blanchard's avatar Anton Blanchard Committed by Linus Torvalds
Browse files

mm: workingset: printk missing log level, use pr_info()

Commit 612e4493 ("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: default avatarAnton Blanchard <anton@samba.org>
Acked-by: default avatarJohannes Weiner <hannes@cmpxchg.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 5a49973d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -491,7 +491,7 @@ static int __init workingset_init(void)
	max_order = fls_long(totalram_pages - 1);
	max_order = fls_long(totalram_pages - 1);
	if (max_order > timestamp_bits)
	if (max_order > timestamp_bits)
		bucket_order = 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);
	       timestamp_bits, max_order, bucket_order);


	ret = list_lru_init_key(&workingset_shadow_nodes, &shadow_nodes_key);
	ret = list_lru_init_key(&workingset_shadow_nodes, &shadow_nodes_key);