]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
nfsd: use timespec64 in encode_time_delta
authorArnd Bergmann <arnd@arndb.de>
Thu, 31 Oct 2019 14:14:03 +0000 (15:14 +0100)
committerJ. Bruce Fields <bfields@redhat.com>
Thu, 19 Dec 2019 22:46:08 +0000 (17:46 -0500)
The values in encode_time_delta are always small and don't
overflow the range of 'struct timespec', so changing it has
no effect.

Change it to timespec64 as a prerequisite for removing the
timespec definition later.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/nfs4xdr.c

index 85949fd6ae7fcb9400f1ce7055631a9e1ba09dfc..9761512674a09c8db0ff9157c53fca78b3053bda 100644 (file)
@@ -2099,11 +2099,11 @@ static __be32 *encode_change(__be32 *p, struct kstat *stat, struct inode *inode,
  */
 static __be32 *encode_time_delta(__be32 *p, struct inode *inode)
 {
-       struct timespec ts;
+       struct timespec64 ts;
        u32 ns;
 
        ns = max_t(u32, NSEC_PER_SEC/HZ, inode->i_sb->s_time_gran);
-       ts = ns_to_timespec(ns);
+       ts = ns_to_timespec64(ns);
 
        p = xdr_encode_hyper(p, ts.tv_sec);
        *p++ = cpu_to_be32(ts.tv_nsec);