diff options
| author | Andrew Morton <akpm@linux-foundation.org> | 2013-02-27 17:03:16 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-27 19:10:11 -0800 | 
| commit | 87ebdc00eeb474615496d5f10eed46709e25c707 (patch) | |
| tree | 614bdfd3620e8e9692bc2d04e718b250081f8d7b /fs/proc/inode.c | |
| parent | e579d2c259be42b6f29458327e5153b22414b031 (diff) | |
fs/proc: clean up printks
- use pr_foo() throughout
- remove a couple of duplicated KERN_WARNINGs, via WARN(KERN_WARNING "...")
- nuke a few warnings which I've never seen happen, ever.
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc/inode.c')
| -rw-r--r-- | fs/proc/inode.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/fs/proc/inode.c b/fs/proc/inode.c index 70322e1a4f0f..a86aebc9ba7c 100644 --- a/fs/proc/inode.c +++ b/fs/proc/inode.c @@ -13,6 +13,7 @@  #include <linux/stat.h>  #include <linux/completion.h>  #include <linux/poll.h> +#include <linux/printk.h>  #include <linux/file.h>  #include <linux/limits.h>  #include <linux/init.h> @@ -495,13 +496,13 @@ int proc_fill_super(struct super_block *s)  	pde_get(&proc_root);  	root_inode = proc_get_inode(s, &proc_root);  	if (!root_inode) { -		printk(KERN_ERR "proc_fill_super: get root inode failed\n"); +		pr_err("proc_fill_super: get root inode failed\n");  		return -ENOMEM;  	}  	s->s_root = d_make_root(root_inode);  	if (!s->s_root) { -		printk(KERN_ERR "proc_fill_super: allocate dentry failed\n"); +		pr_err("proc_fill_super: allocate dentry failed\n");  		return -ENOMEM;  	} | 
