Commit 17d7aac9a55b164874f3d4b7b4f5af87ab457b84

Authored by Borislav Petkov
Committed by Linus Torvalds
1 parent da99075c1d

lib/plist.c: make plist test announcements KERN_DEBUG

They show up in dmesg

[    4.041094] start plist test
[    4.045804] end plist test

without a lot of meaning so hide them behind debug loglevel.

Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -175,7 +175,7 @@
175 175 int nr_expect = 0, i, loop;
176 176 unsigned int r = local_clock();
177 177  
178   - printk(KERN_INFO "start plist test\n");
  178 + pr_debug("start plist test\n");
179 179 plist_head_init(&test_head);
180 180 for (i = 0; i < ARRAY_SIZE(test_node); i++)
181 181 plist_node_init(test_node + i, 0);
... ... @@ -203,7 +203,7 @@
203 203 plist_test_check(nr_expect);
204 204 }
205 205  
206   - printk(KERN_INFO "end plist test\n");
  206 + pr_debug("end plist test\n");
207 207 return 0;
208 208 }
209 209