Lines Matching full:mtime
750 * Helpers to fill in size, ctime, mtime, and atime. We have to be
753 * time_warp_seq or truncate_seq have increased. (Ordinarily, mtime
831 struct timespec64 *mtime, struct timespec64 *atime) in ceph_fill_file_time() argument
853 doutc(cl, "mtime %lld.%09ld -> %lld.%09ld tw %d -> %d\n", in ceph_fill_file_time()
856 mtime->tv_sec, mtime->tv_nsec, in ceph_fill_file_time()
859 inode_set_mtime_to_ts(inode, *mtime); in ceph_fill_file_time()
867 if (timespec64_compare(mtime, &ts) > 0) { in ceph_fill_file_time()
868 doutc(cl, "mtime %lld.%09ld -> %lld.%09ld inc\n", in ceph_fill_file_time()
870 mtime->tv_sec, mtime->tv_nsec); in ceph_fill_file_time()
871 inode_set_mtime_to_ts(inode, *mtime); in ceph_fill_file_time()
889 inode_set_mtime_to_ts(inode, *mtime); in ceph_fill_file_time()
950 struct timespec64 mtime, atime, ctime; in ceph_fill_inode() local
1083 /* be careful with mtime, atime, size */ in ceph_fill_inode()
1085 ceph_decode_timespec64(&mtime, &info->mtime); in ceph_fill_inode()
1089 &ctime, &mtime, &atime); in ceph_fill_inode()
2709 struct timespec64 mtime = inode_get_mtime(inode); in __ceph_setattr() local
2711 doutc(cl, "%p %llx.%llx mtime %lld.%09ld -> %lld.%09ld\n", in __ceph_setattr()
2713 mtime.tv_sec, mtime.tv_nsec, in __ceph_setattr()
2720 timespec64_compare(&mtime, &attr->ia_mtime) < 0) { in __ceph_setattr()
2724 !timespec64_equal(&mtime, &attr->ia_mtime)) { in __ceph_setattr()
2725 ceph_encode_timespec64(&req->r_args.setattr.mtime, in __ceph_setattr()