diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2016-09-26 13:24:34 -0500 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2016-09-26 13:24:34 -0500 |
commit | 332f51d7db13ffb7fcbe2407ed5b3667bc3750a7 (patch) | |
tree | 6876170734199df2b220b7257b3054faeedcd733 /fs/gfs2/inode.c | |
parent | d7c436cd605eb203ecf64c40f9b18aa610ac0248 (diff) | |
download | linux-332f51d7db13ffb7fcbe2407ed5b3667bc3750a7.tar.bz2 |
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/inode.c')
-rw-r--r-- | fs/gfs2/inode.c | 4 |
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); } |