Lines 2059-2065
static int reiserfs_quota_on(struct super_block *sb, int type, int format_id,
Link Here
|
2059 |
inode = path->dentry->d_inode; |
2059 |
inode = path->dentry->d_inode; |
2060 |
/* We must not pack tails for quota files on reiserfs for quota IO to work */ |
2060 |
/* We must not pack tails for quota files on reiserfs for quota IO to work */ |
2061 |
if (!(REISERFS_I(inode)->i_flags & i_nopack_mask)) { |
2061 |
if (!(REISERFS_I(inode)->i_flags & i_nopack_mask)) { |
|
|
2062 |
reiserfs_write_lock(sb); |
2062 |
err = reiserfs_unpack(inode, NULL); |
2063 |
err = reiserfs_unpack(inode, NULL); |
|
|
2064 |
reiserfs_write_unlock(sb); |
2063 |
if (err) { |
2065 |
if (err) { |
2064 |
reiserfs_warning(sb, "super-6520", |
2066 |
reiserfs_warning(sb, "super-6520", |
2065 |
"Unpacking tail of quota file failed" |
2067 |
"Unpacking tail of quota file failed" |
2066 |
- |
|
|