diff options
-rw-r--r-- | fs/ext4/namei.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index a5ba1a858094..6e1ad68cdc7a 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c | |||
@@ -1077,8 +1077,16 @@ static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, stru | |||
1077 | return ERR_PTR(-EIO); | 1077 | return ERR_PTR(-EIO); |
1078 | } | 1078 | } |
1079 | inode = ext4_iget(dir->i_sb, ino); | 1079 | inode = ext4_iget(dir->i_sb, ino); |
1080 | if (IS_ERR(inode)) | 1080 | if (unlikely(IS_ERR(inode))) { |
1081 | return ERR_CAST(inode); | 1081 | if (PTR_ERR(inode) == -ESTALE) { |
1082 | ext4_error(dir->i_sb, __func__, | ||
1083 | "deleted inode referenced: %u", | ||
1084 | ino); | ||
1085 | return ERR_PTR(-EIO); | ||
1086 | } else { | ||
1087 | return ERR_CAST(inode); | ||
1088 | } | ||
1089 | } | ||
1082 | } | 1090 | } |
1083 | return d_splice_alias(inode, dentry); | 1091 | return d_splice_alias(inode, dentry); |
1084 | } | 1092 | } |