dect
/
linux-2.6
Archived
13
0
Fork 0

Btrfs: don't log the inode in file_write while growing the file

This commit is contained in:
Chris Mason 2009-06-27 21:06:22 -04:00
parent 978d910d31
commit f597bb19cc
1 changed files with 4 additions and 1 deletions

View File

@ -151,7 +151,10 @@ static noinline int dirty_and_release_pages(struct btrfs_trans_handle *trans,
}
if (end_pos > isize) {
i_size_write(inode, end_pos);
btrfs_update_inode(trans, root, inode);
/* we've only changed i_size in ram, and we haven't updated
* the disk i_size. There is no need to log the inode
* at this time.
*/
}
err = btrfs_end_transaction(trans, root);
out_unlock: