summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/nfssvc.c
diff options
context:
space:
mode:
authorArnd Bergmann2017-10-19 12:04:11 +0200
committerJ. Bruce Fields2017-11-07 22:44:00 +0100
commit256a89fa3deb6bb699b794e5bf00a72e2fe558b0 (patch)
tree7fae8c6083d12226d1a4dd16857be83b750fabf1 /fs/nfsd/nfssvc.c
parentfs, nfsd: convert nfs4_file.fi_ref from atomic_t to refcount_t (diff)
downloadkernel-qcow2-linux-256a89fa3deb6bb699b794e5bf00a72e2fe558b0.tar.gz
kernel-qcow2-linux-256a89fa3deb6bb699b794e5bf00a72e2fe558b0.tar.xz
kernel-qcow2-linux-256a89fa3deb6bb699b794e5bf00a72e2fe558b0.zip
nfds: avoid gettimeofday for nfssvc_boot time
do_gettimeofday() is deprecated and we should generally use time64_t based functions instead. In case of nfsd, all three users of nfssvc_boot only use the initial time as a unique token, and are not affected by it overflowing, so they are not affected by the y2038 overflow. This converts the structure to timespec64 anyway and adds comments to all uses, to document that we have thought about it and avoid having to look at it again. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfssvc.c')
-rw-r--r--fs/nfsd/nfssvc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c
index 6bbc717f40f2..28ff3e078af6 100644
--- a/fs/nfsd/nfssvc.c
+++ b/fs/nfsd/nfssvc.c
@@ -516,7 +516,7 @@ int nfsd_create_serv(struct net *net)
register_inet6addr_notifier(&nfsd_inet6addr_notifier);
#endif
}
- do_gettimeofday(&nn->nfssvc_boot); /* record boot time */
+ ktime_get_real_ts64(&nn->nfssvc_boot); /* record boot time */
return 0;
}