aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2012-06-12 16:20:26 +0200
committerAl Viro <viro@zeniv.linux.org.uk>2012-07-31 01:02:46 +0400
commita63e9b2e76632b3ccb0f33f43484c0c64d601849 (patch)
tree66f26f0c3a6bc23e3b34dcbe129b815cc90c428c /fs/gfs2
parent9p: Push file_update_time() into v9fs_vm_page_mkwrite() (diff)
downloadlinux-dev-a63e9b2e76632b3ccb0f33f43484c0c64d601849.tar.xz
linux-dev-a63e9b2e76632b3ccb0f33f43484c0c64d601849.zip
gfs2: Push file_update_time() into gfs2_page_mkwrite()
CC: Steven Whitehouse <swhiteho@redhat.com> CC: cluster-devel@redhat.com Acked-by: Steven Whitehouse <swhiteho@redhat.com> Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/file.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c
index 31b199f6efc1..07959150d44e 100644
--- a/fs/gfs2/file.c
+++ b/fs/gfs2/file.c
@@ -376,6 +376,9 @@ static int gfs2_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
*/
vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
+ /* Update file times before taking page lock */
+ file_update_time(vma->vm_file);
+
gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
ret = gfs2_glock_nq(&gh);
if (ret)