commit | f597bb19ccd034cbcf05e1194238e2c8d9505a8a | [log] [tgz] |
---|---|---|
author | Chris Mason <chris.mason@oracle.com> | Sat Jun 27 21:06:22 2009 -0400 |
committer | Chris Mason <chris.mason@oracle.com> | Thu Jul 02 13:41:16 2009 -0400 |
tree | 7389f4fab4606b95e4985403f21f0e851ab050ab | |
parent | 978d910d31c5202e251298bf3f603300a54605dd [diff] [blame] |
Btrfs: don't log the inode in file_write while growing the file
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index 126477e..7c3cd24 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c
@@ -151,7 +151,10 @@ } 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: