Commit 17f95a7b authored by David Howells's avatar David Howells Committed by Linus Torvalds

iget: stop FAT from using iget() and read_inode()

Stop the FAT filesystem from using iget() and read_inode().  Replace the call
to iget() with a call to ilookup().
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Cc: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Acked-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1d1fe1ee
...@@ -634,8 +634,6 @@ static const struct super_operations fat_sops = { ...@@ -634,8 +634,6 @@ static const struct super_operations fat_sops = {
.clear_inode = fat_clear_inode, .clear_inode = fat_clear_inode,
.remount_fs = fat_remount, .remount_fs = fat_remount,
.read_inode = make_bad_inode,
.show_options = fat_show_options, .show_options = fat_show_options,
}; };
...@@ -663,8 +661,8 @@ static struct dentry *fat_fh_to_dentry(struct super_block *sb, ...@@ -663,8 +661,8 @@ static struct dentry *fat_fh_to_dentry(struct super_block *sb,
if (fh_len < 5 || fh_type != 3) if (fh_len < 5 || fh_type != 3)
return NULL; return NULL;
inode = iget(sb, fh[0]); inode = ilookup(sb, fh[0]);
if (!inode || is_bad_inode(inode) || inode->i_generation != fh[1]) { if (!inode || inode->i_generation != fh[1]) {
if (inode) if (inode)
iput(inode); iput(inode);
inode = NULL; inode = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment