summaryrefslogtreecommitdiffstats
path: root/fs/jfs/namei.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/jfs/namei.c')
-rw-r--r--fs/jfs/namei.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c
index 1da0dc799286..247331551992 100644
--- a/fs/jfs/namei.c
+++ b/fs/jfs/namei.c
@@ -1481,10 +1481,8 @@ static struct dentry *jfs_lookup(struct inode *dip, struct dentry *dentry, struc
1481 } 1481 }
1482 1482
1483 ip = jfs_iget(dip->i_sb, inum); 1483 ip = jfs_iget(dip->i_sb, inum);
1484 if (IS_ERR(ip)) { 1484 if (IS_ERR(ip))
1485 jfs_err("jfs_lookup: iget failed on inum %d", (uint) inum); 1485 jfs_err("jfs_lookup: iget failed on inum %d", (uint) inum);
1486 return ERR_CAST(ip);
1487 }
1488 1486
1489 return d_splice_alias(ip, dentry); 1487 return d_splice_alias(ip, dentry);
1490} 1488}