aboutsummaryrefslogtreecommitdiffstats
path: root/fs/bio.c
diff options
context:
space:
mode:
authorMandeep Singh Baines <[email protected]>2011-03-22 23:33:54 +0000
committerLinus Torvalds <[email protected]>2011-03-23 00:44:10 +0000
commit80cdc6dae76ea67d2b21bdca8df17ef47251eb8b (patch)
treeb776fd2d32f4262526de9f4ed907c1b9406bce91 /fs/bio.c
parentadd the common dma_addr_t typedef to include/linux/types.h (diff)
downloadkernel-80cdc6dae76ea67d2b21bdca8df17ef47251eb8b.tar.gz
kernel-80cdc6dae76ea67d2b21bdca8df17ef47251eb8b.zip
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 <[email protected]> Cc: Jens Axboe <[email protected]> Cc: Al Viro <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'fs/bio.c')
-rw-r--r--fs/bio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bio.c b/fs/bio.c
index 4bd454fa844e..4cf2a52fbc54 100644
--- a/fs/bio.c
+++ b/fs/bio.c
@@ -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;