aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruenba@redhat.com>2016-09-26 13:24:34 -0500
committerBob Peterson <rpeterso@redhat.com>2016-09-26 13:24:34 -0500
commit332f51d7db13ffb7fcbe2407ed5b3667bc3750a7 (patch)
tree6876170734199df2b220b7257b3054faeedcd733 /fs/gfs2
parentgfs2: Update file times after grabbing glock (diff)
downloadlinux-dev-332f51d7db13ffb7fcbe2407ed5b3667bc3750a7.tar.xz
linux-dev-332f51d7db13ffb7fcbe2407ed5b3667bc3750a7.zip
gfs2: Initialize atime of I_NEW inodes
Fix for commit 719ee344: initialize atime of I_NEW inodes to 0 so that the timestamps read from disk will always be more recent than the initial timestamp, and the atime in the I_NEW inode will be set correctly. Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com> Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/inode.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index e0621cacf134..095c839d44f4 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -187,6 +187,10 @@ struct inode *gfs2_inode_lookup(struct super_block *sb, unsigned int type,
}
gfs2_set_iop(inode);
+
+ inode->i_atime.tv_sec = 0;
+ inode->i_atime.tv_nsec = 0;
+
unlock_new_inode(inode);
}