diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-10-04 23:38:56 +0300 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-11-04 05:28:44 +0300 |
commit | e86d5a02874c1364c50e1b532481835b54173ed2 (patch) | |
tree | 463c98200215d31cde6d2aefc2f410ea94cb9a8a /include/linux/nfs_fs_sb.h | |
parent | 22a1ae9a93fb64600d0756e8f8051d65527f6786 (diff) | |
download | linux-e86d5a02874c1364c50e1b532481835b54173ed2.tar.xz |
NFS: Convert struct nfs_fattr to use struct timespec64
NFSv4 supports 64-bit times, so we should switch to using struct
timespec64 when decoding attributes.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'include/linux/nfs_fs_sb.h')
-rw-r--r-- | include/linux/nfs_fs_sb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index a87fe854f008..47266870a235 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h @@ -171,7 +171,7 @@ struct nfs_server { struct nfs_fsid fsid; __u64 maxfilesize; /* maximum file size */ - struct timespec time_delta; /* smallest time granularity */ + struct timespec64 time_delta; /* smallest time granularity */ unsigned long mount_time; /* when this fs was mounted */ struct super_block *super; /* VFS super block */ dev_t s_dev; /* superblock dev numbers */ |