diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-07-13 23:18:38 +0300 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2018-08-02 22:33:19 +0300 |
commit | 0ed1e90a09eb0e2863cab43e1ed5c5df89566772 (patch) | |
tree | c8ff47546b0ab87c3cfb8ddc27cda86811429115 /fs/ceph/mds_client.h | |
parent | fac02ddf910814c24f5d9d969dfdab5227f6f3eb (diff) | |
download | linux-0ed1e90a09eb0e2863cab43e1ed5c5df89566772.tar.xz |
ceph: use timespec64 for r_stamp
The ceph_mds_request stamp still uses the deprecated timespec structure,
this converts it over as well.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: "Yan, Zheng" <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph/mds_client.h')
-rw-r--r-- | fs/ceph/mds_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/mds_client.h b/fs/ceph/mds_client.h index 2ec3b5b35067..80a7523e1523 100644 --- a/fs/ceph/mds_client.h +++ b/fs/ceph/mds_client.h @@ -229,7 +229,7 @@ struct ceph_mds_request { int r_fmode; /* file mode, if expecting cap */ kuid_t r_uid; kgid_t r_gid; - struct timespec r_stamp; + struct timespec64 r_stamp; /* for choosing which mds to send this request to */ int r_direct_mode; |