diff options
author | Borislav Petkov <borislav.petkov@amd.com> | 2012-10-04 20:13:27 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-05 14:04:58 -0400 |
commit | 17d7aac9a55b164874f3d4b7b4f5af87ab457b84 (patch) | |
tree | edc4e76f1914385c4d04bda0a5e0cdf36be32ef3 /lib | |
parent | da99075c1d368315e1508b6143226c0d27b621e0 (diff) |
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>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plist.c b/lib/plist.c index 6ab0e521c48b..1ebc95f7a46f 100644 --- a/lib/plist.c +++ b/lib/plist.c | |||
@@ -175,7 +175,7 @@ static int __init plist_test(void) | |||
175 | int nr_expect = 0, i, loop; | 175 | int nr_expect = 0, i, loop; |
176 | unsigned int r = local_clock(); | 176 | unsigned int r = local_clock(); |
177 | 177 | ||
178 | printk(KERN_INFO "start plist test\n"); | 178 | pr_debug("start plist test\n"); |
179 | plist_head_init(&test_head); | 179 | plist_head_init(&test_head); |
180 | for (i = 0; i < ARRAY_SIZE(test_node); i++) | 180 | for (i = 0; i < ARRAY_SIZE(test_node); i++) |
181 | plist_node_init(test_node + i, 0); | 181 | plist_node_init(test_node + i, 0); |
@@ -203,7 +203,7 @@ static int __init plist_test(void) | |||
203 | plist_test_check(nr_expect); | 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 | return 0; | 207 | return 0; |
208 | } | 208 | } |
209 | 209 | ||