diff options
Diffstat (limited to 'fs/ceph/file.c')
-rw-r--r-- | fs/ceph/file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 6b9f7f3cd237..ad0bed99b1d5 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c | |||
@@ -923,7 +923,7 @@ ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter, | |||
923 | int num_pages = 0; | 923 | int num_pages = 0; |
924 | int flags; | 924 | int flags; |
925 | int ret; | 925 | int ret; |
926 | struct timespec mtime = current_time(inode); | 926 | struct timespec mtime = timespec64_to_timespec(current_time(inode)); |
927 | size_t count = iov_iter_count(iter); | 927 | size_t count = iov_iter_count(iter); |
928 | loff_t pos = iocb->ki_pos; | 928 | loff_t pos = iocb->ki_pos; |
929 | bool write = iov_iter_rw(iter) == WRITE; | 929 | bool write = iov_iter_rw(iter) == WRITE; |
@@ -1131,7 +1131,7 @@ ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos, | |||
1131 | int flags; | 1131 | int flags; |
1132 | int ret; | 1132 | int ret; |
1133 | bool check_caps = false; | 1133 | bool check_caps = false; |
1134 | struct timespec mtime = current_time(inode); | 1134 | struct timespec mtime = timespec64_to_timespec(current_time(inode)); |
1135 | size_t count = iov_iter_count(from); | 1135 | size_t count = iov_iter_count(from); |
1136 | 1136 | ||
1137 | if (ceph_snap(file_inode(file)) != CEPH_NOSNAP) | 1137 | if (ceph_snap(file_inode(file)) != CEPH_NOSNAP) |
@@ -1663,7 +1663,7 @@ static int ceph_zero_partial_object(struct inode *inode, | |||
1663 | goto out; | 1663 | goto out; |
1664 | } | 1664 | } |
1665 | 1665 | ||
1666 | req->r_mtime = inode->i_mtime; | 1666 | req->r_mtime = timespec64_to_timespec(inode->i_mtime); |
1667 | ret = ceph_osdc_start_request(&fsc->client->osdc, req, false); | 1667 | ret = ceph_osdc_start_request(&fsc->client->osdc, req, false); |
1668 | if (!ret) { | 1668 | if (!ret) { |
1669 | ret = ceph_osdc_wait_request(&fsc->client->osdc, req); | 1669 | ret = ceph_osdc_wait_request(&fsc->client->osdc, req); |