From: Jan Kara Date: Tue, 12 Jun 2012 14:20:26 +0000 (+0200) Subject: gfs2: Push file_update_time() into gfs2_page_mkwrite() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a63e9b2e76632b3ccb0f33f43484c0c64d601849;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git gfs2: Push file_update_time() into gfs2_page_mkwrite() CC: Steven Whitehouse CC: cluster-devel@redhat.com Acked-by: Steven Whitehouse Signed-off-by: Jan Kara Signed-off-by: Al Viro --- 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)