diff options
author | Jan Kara <jack@suse.cz> | 2012-06-12 16:20:26 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-07-31 01:02:46 +0400 |
commit | a63e9b2e76632b3ccb0f33f43484c0c64d601849 (patch) | |
tree | 66f26f0c3a6bc23e3b34dcbe129b815cc90c428c | |
parent | 120c2bcad80c0f7c6691ad70f7fb1e709854d725 (diff) | |
download | linux-a63e9b2e76632b3ccb0f33f43484c0c64d601849.tar.gz linux-a63e9b2e76632b3ccb0f33f43484c0c64d601849.tar.bz2 linux-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>
-rw-r--r-- | fs/gfs2/file.c | 3 |
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) |