diff options
Diffstat (limited to 'fs/ext4/namei.c')
-rw-r--r-- | fs/ext4/namei.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 565a154e22d4..f8068c7bae9f 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c | |||
@@ -2253,9 +2253,11 @@ static int ext4_symlink(struct inode *dir, | |||
2253 | /* | 2253 | /* |
2254 | * For non-fast symlinks, we just allocate inode and put it on | 2254 | * For non-fast symlinks, we just allocate inode and put it on |
2255 | * orphan list in the first transaction => we need bitmap, | 2255 | * orphan list in the first transaction => we need bitmap, |
2256 | * group descriptor, sb, inode block, quota blocks. | 2256 | * group descriptor, sb, inode block, quota blocks, and |
2257 | * possibly selinux xattr blocks. | ||
2257 | */ | 2258 | */ |
2258 | credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb); | 2259 | credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) + |
2260 | EXT4_XATTR_TRANS_BLOCKS; | ||
2259 | } else { | 2261 | } else { |
2260 | /* | 2262 | /* |
2261 | * Fast symlink. We have to add entry to directory | 2263 | * Fast symlink. We have to add entry to directory |