mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
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>
This commit is contained in:
parent
3e50594e8e
commit
80cdc6dae7
3 changed files with 4 additions and 3 deletions
2
fs/bio.c
2
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue