The patch titled Subject: mm: workingset: printk missing log level, use pr_info() has been added to the -mm tree. Its filename is mm-workingset-printk-missing-log-level-use-pr_info.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-workingset-printk-missing-log-level-use-pr_info.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-workingset-printk-missing-log-level-use-pr_info.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Anton Blanchard <anton@xxxxxxxxx> Subject: 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@xxxxxxxxxx Signed-off-by: Anton Blanchard <anton@xxxxxxxxx> Acked-by: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/workingset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/workingset.c~mm-workingset-printk-missing-log-level-use-pr_info mm/workingset.c --- a/mm/workingset.c~mm-workingset-printk-missing-log-level-use-pr_info +++ a/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); _ Patches currently in -mm which might be from anton@xxxxxxxxx are mm-workingset-printk-missing-log-level-use-pr_info.patch exit-quieten-greatest-stack-depth-printk.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html