aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmir Goldstein <amir73il@gmail.com>2018-01-03 10:14:34 -0500
committerJ. Bruce Fields <bfields@redhat.com>2018-02-08 13:40:16 -0500
commit76c479480b9afff4c585a17e19a1efe3457a2d9b (patch)
tree231e1b89853c6428f45cf5d04ab68e8e628dd863
parent0078117c6d9160031b866cfa1853514d4f6865d2 (diff)
nfsd: encode stat->mtime for getattr instead of inode->i_mtime
The values of stat->mtime and inode->i_mtime may differ for overlayfs and stat->mtime is the correct value to use when encoding getattr. This is also consistent with the fact that other attr times are also encoded from stat values. Both callers of lease_get_mtime() already have the value of stat->mtime, so the only needed change is that lease_get_mtime() will not overwrite this value with inode->i_mtime in case the inode does not have an exclusive lease. Signed-off-by: Amir Goldstein <amir73il@gmail.com> Reviewed-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r--fs/locks.c6
-rw-r--r--fs/nfsd/nfsxdr.c1
2 files changed, 3 insertions, 4 deletions
diff --git a/fs/locks.c b/fs/locks.c
index 1bd71c4d663a..db374a025811 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -1554,9 +1554,9 @@ out:
1554EXPORT_SYMBOL(__break_lease); 1554EXPORT_SYMBOL(__break_lease);
1555 1555
1556/** 1556/**
1557 * lease_get_mtime - get the last modified time of an inode 1557 * lease_get_mtime - update modified time of an inode with exclusive lease
1558 * @inode: the inode 1558 * @inode: the inode
1559 * @time: pointer to a timespec which will contain the last modified time 1559 * @time: pointer to a timespec which contains the last modified time
1560 * 1560 *
1561 * This is to force NFS clients to flush their caches for files with 1561 * This is to force NFS clients to flush their caches for files with
1562 * exclusive leases. The justification is that if someone has an 1562 * exclusive leases. The justification is that if someone has an
@@ -1580,8 +1580,6 @@ void lease_get_mtime(struct inode *inode, struct timespec *time)
1580 1580
1581 if (has_lease) 1581 if (has_lease)
1582 *time = current_time(inode); 1582 *time = current_time(inode);
1583 else
1584 *time = inode->i_mtime;
1585} 1583}
1586 1584
1587EXPORT_SYMBOL(lease_get_mtime); 1585EXPORT_SYMBOL(lease_get_mtime);
diff --git a/fs/nfsd/nfsxdr.c b/fs/nfsd/nfsxdr.c
index 644a0342f0e0..79b6064f8977 100644
--- a/fs/nfsd/nfsxdr.c
+++ b/fs/nfsd/nfsxdr.c
@@ -188,6 +188,7 @@ encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
188 *p++ = htonl((u32) stat->ino); 188 *p++ = htonl((u32) stat->ino);
189 *p++ = htonl((u32) stat->atime.tv_sec); 189 *p++ = htonl((u32) stat->atime.tv_sec);
190 *p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0); 190 *p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0);
191 time = stat->mtime;
191 lease_get_mtime(d_inode(dentry), &time); 192 lease_get_mtime(d_inode(dentry), &time);
192 *p++ = htonl((u32) time.tv_sec); 193 *p++ = htonl((u32) time.tv_sec);
193 *p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0); 194 *p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0);