fs/efs: convert printk to pr_foo()
Convert all except KERN_DEBUG (pr_debug doesn't work the same as printk(KERN_DEBUG and requires special check) Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
ae3ccc4678
commit
179b87fb18
@@ -89,7 +89,7 @@ struct inode *efs_iget(struct super_block *super, unsigned long ino)
|
||||
|
||||
bh = sb_bread(inode->i_sb, block);
|
||||
if (!bh) {
|
||||
printk(KERN_WARNING "EFS: bread() failed at block %d\n", block);
|
||||
pr_warn("EFS: bread() failed at block %d\n", block);
|
||||
goto read_inode_error;
|
||||
}
|
||||
|
||||
@@ -130,7 +130,7 @@ struct inode *efs_iget(struct super_block *super, unsigned long ino)
|
||||
for(i = 0; i < EFS_DIRECTEXTENTS; i++) {
|
||||
extent_copy(&(efs_inode->di_u.di_extents[i]), &(in->extents[i]));
|
||||
if (i < in->numextents && in->extents[i].cooked.ex_magic != 0) {
|
||||
printk(KERN_WARNING "EFS: extent %d has bad magic number in inode %lu\n", i, inode->i_ino);
|
||||
pr_warn("EFS: extent %d has bad magic number in inode %lu\n", i, inode->i_ino);
|
||||
brelse(bh);
|
||||
goto read_inode_error;
|
||||
}
|
||||
@@ -162,7 +162,7 @@ struct inode *efs_iget(struct super_block *super, unsigned long ino)
|
||||
init_special_inode(inode, inode->i_mode, device);
|
||||
break;
|
||||
default:
|
||||
printk(KERN_WARNING "EFS: unsupported inode mode %o\n", inode->i_mode);
|
||||
pr_warn("EFS: unsupported inode mode %o\n", inode->i_mode);
|
||||
goto read_inode_error;
|
||||
break;
|
||||
}
|
||||
@@ -171,7 +171,7 @@ struct inode *efs_iget(struct super_block *super, unsigned long ino)
|
||||
return inode;
|
||||
|
||||
read_inode_error:
|
||||
printk(KERN_WARNING "EFS: failed to read inode %lu\n", inode->i_ino);
|
||||
pr_warn("EFS: failed to read inode %lu\n", inode->i_ino);
|
||||
iget_failed(inode);
|
||||
return ERR_PTR(-EIO);
|
||||
}
|
||||
@@ -216,7 +216,7 @@ efs_block_t efs_map_block(struct inode *inode, efs_block_t block) {
|
||||
|
||||
/* if we only have one extent then nothing can be found */
|
||||
if (in->numextents == 1) {
|
||||
printk(KERN_ERR "EFS: map_block() failed to map (1 extent)\n");
|
||||
pr_err("EFS: map_block() failed to map (1 extent)\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -234,7 +234,7 @@ efs_block_t efs_map_block(struct inode *inode, efs_block_t block) {
|
||||
}
|
||||
}
|
||||
|
||||
printk(KERN_ERR "EFS: map_block() failed to map block %u (dir)\n", block);
|
||||
pr_err("EFS: map_block() failed to map block %u (dir)\n", block);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -262,7 +262,7 @@ efs_block_t efs_map_block(struct inode *inode, efs_block_t block) {
|
||||
|
||||
if (dirext == direxts) {
|
||||
/* should never happen */
|
||||
printk(KERN_ERR "EFS: couldn't find direct extent for indirect extent %d (block %u)\n", cur, block);
|
||||
pr_err("EFS: couldn't find direct extent for indirect extent %d (block %u)\n", cur, block);
|
||||
if (bh) brelse(bh);
|
||||
return 0;
|
||||
}
|
||||
@@ -279,7 +279,7 @@ efs_block_t efs_map_block(struct inode *inode, efs_block_t block) {
|
||||
|
||||
bh = sb_bread(inode->i_sb, iblock);
|
||||
if (!bh) {
|
||||
printk(KERN_ERR "EFS: bread() failed at block %d\n", iblock);
|
||||
pr_err("EFS: bread() failed at block %d\n", iblock);
|
||||
return 0;
|
||||
}
|
||||
#ifdef DEBUG
|
||||
@@ -294,7 +294,7 @@ efs_block_t efs_map_block(struct inode *inode, efs_block_t block) {
|
||||
extent_copy(&(exts[ioffset]), &ext);
|
||||
|
||||
if (ext.cooked.ex_magic != 0) {
|
||||
printk(KERN_ERR "EFS: extent %d has bad magic number in block %d\n", cur, iblock);
|
||||
pr_err("EFS: extent %d has bad magic number in block %d\n", cur, iblock);
|
||||
if (bh) brelse(bh);
|
||||
return 0;
|
||||
}
|
||||
@@ -306,7 +306,7 @@ efs_block_t efs_map_block(struct inode *inode, efs_block_t block) {
|
||||
}
|
||||
}
|
||||
if (bh) brelse(bh);
|
||||
printk(KERN_ERR "EFS: map_block() failed to map block %u (indir)\n", block);
|
||||
pr_err("EFS: map_block() failed to map block %u (indir)\n", block);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user