summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/file.c
diff options
context:
space:
mode:
authorTsutomu Itoh2012-11-08 05:47:33 +0100
committerJosef Bacik2012-12-12 23:15:26 +0100
commite1f5790e0588bc5b11eb57f95bfde8702049dd0d (patch)
treefee29e0121343b9ef703f508e8696b013d390097 /fs/btrfs/file.c
parentBtrfs: Don't trust the superblock label and simply printk("%s") it (diff)
downloadkernel-qcow2-linux-e1f5790e0588bc5b11eb57f95bfde8702049dd0d.tar.gz
kernel-qcow2-linux-e1f5790e0588bc5b11eb57f95bfde8702049dd0d.tar.xz
kernel-qcow2-linux-e1f5790e0588bc5b11eb57f95bfde8702049dd0d.zip
Btrfs: set hole punching time properly
Even if the hole punching is executed, the modification time of the file is not updated. So, current time is set to inode. Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r--fs/btrfs/file.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index d2df98124d0f..883cf826cf25 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -1964,6 +1964,9 @@ out_trans:
if (!trans)
goto out_free;
+ inode_inc_iversion(inode);
+ inode->i_mtime = inode->i_ctime = CURRENT_TIME;
+
trans->block_rsv = &root->fs_info->trans_block_rsv;
ret = btrfs_update_inode(trans, root, inode);
nr = trans->blocks_used;