From: Andrew Morton WARNING: printk() should include KERN_ facility level #116: FILE: fs/romfs/inode.c:508: + printk("romfs: read error for inode 0x%lx\n", ino); total: 0 errors, 1 warnings, 109 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: David Howells Signed-off-by: Andrew Morton --- fs/romfs/inode.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN fs/romfs/inode.c~iget-stop-romfs-from-using-iget-and-read_inode-checkpatch-fixes fs/romfs/inode.c --- a/fs/romfs/inode.c~iget-stop-romfs-from-using-iget-and-read_inode-checkpatch-fixes +++ a/fs/romfs/inode.c @@ -505,7 +505,8 @@ romfs_iget(struct super_block *sb, unsig /* Loop for finding the real hard link */ for(;;) { if (romfs_copyfrom(i, &ri, ino, ROMFH_SIZE) <= 0) { - printk("romfs: read error for inode 0x%lx\n", ino); + printk(KERN_ERR "romfs: read error for inode 0x%lx\n", + ino); iget_failed(i); return ERR_PTR(-EIO); } _