From: Chris Mason Date: Sun, 28 Jun 2009 01:06:22 +0000 (-0400) Subject: Btrfs: don't log the inode in file_write while growing the file X-Git-Tag: firefly_0821_release~13200^2~35 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f597bb19ccd034cbcf05e1194238e2c8d9505a8a;p=firefly-linux-kernel-4.4.55.git 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 126477eaecf5..7c3cd248d8d6 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c @@ -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: