diff options
author | Mandeep Singh Baines <msb@chromium.org> | 2011-03-22 16:33:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-22 17:44:10 -0700 |
commit | 80cdc6dae76ea67d2b21bdca8df17ef47251eb8b (patch) | |
tree | b776fd2d32f4262526de9f4ed907c1b9406bce91 /fs/bio.c | |
parent | 3e50594e8e72932ad4cfcb0b3cbdf58fc3bce416 (diff) | |
download | op-kernel-dev-80cdc6dae76ea67d2b21bdca8df17ef47251eb8b.zip op-kernel-dev-80cdc6dae76ea67d2b21bdca8df17ef47251eb8b.tar.gz |
fs: use appropriate printk priority levels
printk()s without a priority level default to KERN_WARNING. To reduce
noise at KERN_WARNING, this patch set the priority level appriopriately
for unleveled printks()s. This should be useful to folks that look at
dmesg warnings closely.
Signed-off-by: Mandeep Singh Baines <msb@chromium.org>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/bio.c')
-rw-r--r-- | fs/bio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -111,7 +111,7 @@ static struct kmem_cache *bio_find_or_create_slab(unsigned int extra_size) if (!slab) goto out_unlock; - printk("bio: create slab <%s> at %d\n", bslab->name, entry); + printk(KERN_INFO "bio: create slab <%s> at %d\n", bslab->name, entry); bslab->slab = slab; bslab->slab_ref = 1; bslab->slab_size = sz; |