aboutsummaryrefslogtreecommitdiffstats
path: root/fs/affs/namei.c
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2017-04-15 02:55:11 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2017-04-26 23:54:05 -0400
commita9d6cfb70f71e3d7fb4fe90db40f965e7096bdab (patch)
tree7d0a5b7d02b6475cac3a3d295bf5b672d7e0542d /fs/affs/namei.c
parentd2d58e0e0d6c750941147e505f4263239427e359 (diff)
fs/affs: remove node generation check
node generation has to be stored on disk. AFAICS we won't be able to manage it on AFFS. This patch removes relevant check in affs_nfs_get_inode() Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/affs/namei.c')
-rw-r--r--fs/affs/namei.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/affs/namei.c b/fs/affs/namei.c
index b02da4d421cc..d9a40b5ca4d3 100644
--- a/fs/affs/namei.c
+++ b/fs/affs/namei.c
@@ -478,11 +478,6 @@ static struct inode *affs_nfs_get_inode(struct super_block *sb, u64 ino,
478 if (IS_ERR(inode)) 478 if (IS_ERR(inode))
479 return ERR_CAST(inode); 479 return ERR_CAST(inode);
480 480
481 if (generation && inode->i_generation != generation) {
482 iput(inode);
483 return ERR_PTR(-ESTALE);
484 }
485
486 return inode; 481 return inode;
487} 482}
488 483