fs: befs: replace befs_bread by sb_bread
Since befs_bread merely calls sb_bread, replace it by sb_bread. Link: http://lkml.kernel.org/r/1466800258-4542-1-git-send-email-salah.triki@gmail.com Signed-off-by: Salah Triki <salah.triki@gmail.com> Acked-by: Luis de Bethencourt <luisbg@osg.samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:

committed by
Luis de Bethencourt

parent
f0f2536fe3
commit
f7f675406b
@@ -318,7 +318,7 @@ static struct inode *befs_iget(struct super_block *sb, unsigned long ino)
|
||||
befs_ino->i_inode_num.allocation_group,
|
||||
befs_ino->i_inode_num.start, befs_ino->i_inode_num.len);
|
||||
|
||||
bh = befs_bread(sb, inode->i_ino);
|
||||
bh = sb_bread(sb, inode->i_ino);
|
||||
if (!bh) {
|
||||
befs_error(sb, "unable to read inode block - "
|
||||
"inode = %lu", inode->i_ino);
|
||||
|
Reference in New Issue
Block a user