diff --git a/[refs] b/[refs] index b026b735dbb0..5cc26a57c3ed 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 1d1fe1ee02b9ac2660995b10e35dd41448fef011 +refs/heads/master: 17f95a7b4416a2c61e35f51b29eaaf1818fb5d7d diff --git a/trunk/fs/fat/inode.c b/trunk/fs/fat/inode.c index 3a3d491bbcfe..085269e07fb3 100644 --- a/trunk/fs/fat/inode.c +++ b/trunk/fs/fat/inode.c @@ -634,8 +634,6 @@ static const struct super_operations fat_sops = { .clear_inode = fat_clear_inode, .remount_fs = fat_remount, - .read_inode = make_bad_inode, - .show_options = fat_show_options, }; @@ -663,8 +661,8 @@ static struct dentry *fat_fh_to_dentry(struct super_block *sb, if (fh_len < 5 || fh_type != 3) return NULL; - inode = iget(sb, fh[0]); - if (!inode || is_bad_inode(inode) || inode->i_generation != fh[1]) { + inode = ilookup(sb, fh[0]); + if (!inode || inode->i_generation != fh[1]) { if (inode) iput(inode); inode = NULL;