Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 83862
b: refs/heads/master
c: 17f95a7
h: refs/heads/master
v: v3
  • Loading branch information
David Howells authored and Linus Torvalds committed Feb 7, 2008
1 parent f7928c5 commit 135db70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1d1fe1ee02b9ac2660995b10e35dd41448fef011
refs/heads/master: 17f95a7b4416a2c61e35f51b29eaaf1818fb5d7d
6 changes: 2 additions & 4 deletions trunk/fs/fat/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};

Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 135db70

Please sign in to comment.