mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-14 12:49:08 +00:00
fat: kill is_bad_inode() check
FAT doesn't need to check bad inode anymore. Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d5dee5c395
commit
3754a54447
@ -433,11 +433,8 @@ EXPORT_SYMBOL_GPL(fat_build_inode);
|
||||
static void fat_delete_inode(struct inode *inode)
|
||||
{
|
||||
truncate_inode_pages(&inode->i_data, 0);
|
||||
|
||||
if (!is_bad_inode(inode)) {
|
||||
inode->i_size = 0;
|
||||
fat_truncate(inode);
|
||||
}
|
||||
inode->i_size = 0;
|
||||
fat_truncate(inode);
|
||||
clear_inode(inode);
|
||||
}
|
||||
|
||||
@ -445,8 +442,6 @@ static void fat_clear_inode(struct inode *inode)
|
||||
{
|
||||
struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
|
||||
|
||||
if (is_bad_inode(inode))
|
||||
return;
|
||||
lock_kernel();
|
||||
spin_lock(&sbi->inode_hash_lock);
|
||||
fat_cache_inval_inode(inode);
|
||||
|
Loading…
Reference in New Issue
Block a user