Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1431637
| From | Anton Blanchard <anton@ozlabs.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/2] mm: workingset: printk missing log level, use pr_info() |
| Date | 2016-06-27 01:10 +0200 |
| Message-ID | <rOrlD-Ek-7@gated-at.bofh.it> (permalink) |
| References | <rOrlD-Ek-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Anton Blanchard <anton@samba.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@samba.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
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/2] exit: Quieten greatest stack depth printk Anton Blanchard <anton@ozlabs.org> - 2016-06-27 01:10 +0200
[PATCH 2/2] mm: workingset: printk missing log level, use pr_info() Anton Blanchard <anton@ozlabs.org> - 2016-06-27 01:10 +0200
Re: [PATCH 2/2] mm: workingset: printk missing log level, use pr_info() Joe Perches <joe@perches.com> - 2016-06-27 06:10 +0200
Re: [PATCH 2/2] mm: workingset: printk missing log level, use pr_info() Johannes Weiner <hannes@cmpxchg.org> - 2016-07-06 16:00 +0200
csiph-web