mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-21 21:02:24 +00:00
[PATCH] Remove unnecessary check in fs/fat/inode.c
Aince all callers dereference sb, and this function does so earlier too, we dont need the check. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
887ed2f3ae
commit
97e860d364
@ -1472,7 +1472,7 @@ int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
|
|||||||
ret = writeback_inode(i1);
|
ret = writeback_inode(i1);
|
||||||
if (!ret && i2)
|
if (!ret && i2)
|
||||||
ret = writeback_inode(i2);
|
ret = writeback_inode(i2);
|
||||||
if (!ret && sb) {
|
if (!ret) {
|
||||||
struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
|
struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
|
||||||
ret = filemap_flush(mapping);
|
ret = filemap_flush(mapping);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user