diff options
-rw-r--r-- | fs/ext3/namei.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/ext3/namei.c b/fs/ext3/namei.c index 6e18a0b7750d..5571708b6a58 100644 --- a/fs/ext3/namei.c +++ b/fs/ext3/namei.c | |||
@@ -2209,9 +2209,11 @@ static int ext3_symlink (struct inode * dir, | |||
2209 | /* | 2209 | /* |
2210 | * For non-fast symlinks, we just allocate inode and put it on | 2210 | * For non-fast symlinks, we just allocate inode and put it on |
2211 | * orphan list in the first transaction => we need bitmap, | 2211 | * orphan list in the first transaction => we need bitmap, |
2212 | * group descriptor, sb, inode block, quota blocks. | 2212 | * group descriptor, sb, inode block, quota blocks, and |
2213 | * possibly selinux xattr blocks. | ||
2213 | */ | 2214 | */ |
2214 | credits = 4 + EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb); | 2215 | credits = 4 + EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) + |
2216 | EXT3_XATTR_TRANS_BLOCKS; | ||
2215 | } else { | 2217 | } else { |
2216 | /* | 2218 | /* |
2217 | * Fast symlink. We have to add entry to directory | 2219 | * Fast symlink. We have to add entry to directory |