mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 22:21:42 +00:00
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>
This commit is contained in:
parent
d03f918ab9
commit
e1f5790e05
@ -1964,6 +1964,9 @@ out_trans:
|
|||||||
if (!trans)
|
if (!trans)
|
||||||
goto out_free;
|
goto out_free;
|
||||||
|
|
||||||
|
inode_inc_iversion(inode);
|
||||||
|
inode->i_mtime = inode->i_ctime = CURRENT_TIME;
|
||||||
|
|
||||||
trans->block_rsv = &root->fs_info->trans_block_rsv;
|
trans->block_rsv = &root->fs_info->trans_block_rsv;
|
||||||
ret = btrfs_update_inode(trans, root, inode);
|
ret = btrfs_update_inode(trans, root, inode);
|
||||||
nr = trans->blocks_used;
|
nr = trans->blocks_used;
|
||||||
|
Loading…
Reference in New Issue
Block a user