diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-07-22 01:19:42 +0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-08-09 16:47:55 -0400 |
commit | addacc7d6f0f0bcce12adf9fe9e6455e1dfd74da (patch) | |
tree | 8743c3586ebc9691fe45b2783e13500ad33b584d /fs/ext2/xattr.c | |
parent | 3889717d2851bf38015c0b291026c07c02264623 (diff) | |
download | linux-3.10-addacc7d6f0f0bcce12adf9fe9e6455e1dfd74da.tar.gz linux-3.10-addacc7d6f0f0bcce12adf9fe9e6455e1dfd74da.tar.bz2 linux-3.10-addacc7d6f0f0bcce12adf9fe9e6455e1dfd74da.zip |
Take dirtying the inode to callers of ext2_free_blocks()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ext2/xattr.c')
-rw-r--r-- | fs/ext2/xattr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ext2/xattr.c b/fs/ext2/xattr.c index 0fa24e814d8..25ff041058a 100644 --- a/fs/ext2/xattr.c +++ b/fs/ext2/xattr.c @@ -674,6 +674,7 @@ ext2_xattr_set2(struct inode *inode, struct buffer_head *old_bh, new_bh = sb_getblk(sb, block); if (!new_bh) { ext2_free_blocks(inode, block, 1); + mark_inode_dirty(inode); error = -EIO; goto cleanup; } @@ -729,6 +730,7 @@ ext2_xattr_set2(struct inode *inode, struct buffer_head *old_bh, mb_cache_entry_free(ce); ea_bdebug(old_bh, "freeing"); ext2_free_blocks(inode, old_bh->b_blocknr, 1); + mark_inode_dirty(inode); /* We let our caller release old_bh, so we * need to duplicate the buffer before. */ get_bh(old_bh); @@ -789,6 +791,7 @@ ext2_xattr_delete_inode(struct inode *inode) if (ce) mb_cache_entry_free(ce); ext2_free_blocks(inode, EXT2_I(inode)->i_file_acl, 1); + mark_inode_dirty(inode); get_bh(bh); bforget(bh); unlock_buffer(bh); |