diff options
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/namei.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index e5a74a5ac261..05c0d7f8fdf9 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c | |||
@@ -2189,6 +2189,12 @@ static int ext4_link (struct dentry * old_dentry, | |||
2189 | 2189 | ||
2190 | if (inode->i_nlink >= EXT4_LINK_MAX) | 2190 | if (inode->i_nlink >= EXT4_LINK_MAX) |
2191 | return -EMLINK; | 2191 | return -EMLINK; |
2192 | /* | ||
2193 | * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing | ||
2194 | * otherwise has the potential to corrupt the orphan inode list. | ||
2195 | */ | ||
2196 | if (inode->i_nlink == 0) | ||
2197 | return -ENOENT; | ||
2192 | 2198 | ||
2193 | retry: | 2199 | retry: |
2194 | handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) + | 2200 | handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) + |