Lines Matching refs:time
39 #include <linux/time.h>
148 1 /* lease time */ + \
152 nfstime4_maxsz /* time delta */ + \
3466 dprintk("%s: lease time=%u\n", __func__, (unsigned int)*res);
4145 static int decode_attr_time(struct xdr_stream *xdr, struct timespec64 *time)
4152 xdr_decode_nfstime4(p, time);
4156 static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec64 *time)
4160 time->tv_sec = 0;
4161 time->tv_nsec = 0;
4165 status = decode_attr_time(xdr, time);
4170 dprintk("%s: atime=%lld\n", __func__, time->tv_sec);
4174 static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec64 *time)
4178 time->tv_sec = 0;
4179 time->tv_nsec = 0;
4183 status = decode_attr_time(xdr, time);
4188 dprintk("%s: ctime=%lld\n", __func__, time->tv_sec);
4193 struct timespec64 *time)
4197 time->tv_sec = 0;
4198 time->tv_nsec = 0;
4202 status = decode_attr_time(xdr, time);
4205 dprintk("%s: time_delta=%lld %ld\n", __func__, time->tv_sec,
4206 time->tv_nsec);
4259 static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec64 *time)
4263 time->tv_sec = 0;
4264 time->tv_nsec = 0;
4268 status = decode_attr_time(xdr, time);
4273 dprintk("%s: mtime=%lld\n", __func__, time->tv_sec);