Lines Matching defs:time
39 #include <linux/time.h>
3437 dprintk("%s: lease time=%u\n", __func__, (unsigned int)*res);
4077 static int decode_attr_time(struct xdr_stream *xdr, struct timespec64 *time)
4084 xdr_decode_nfstime4(p, time);
4088 static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec64 *time)
4092 time->tv_sec = 0;
4093 time->tv_nsec = 0;
4097 status = decode_attr_time(xdr, time);
4102 dprintk("%s: atime=%lld\n", __func__, time->tv_sec);
4106 static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec64 *time)
4110 time->tv_sec = 0;
4111 time->tv_nsec = 0;
4115 status = decode_attr_time(xdr, time);
4120 dprintk("%s: ctime=%lld\n", __func__, time->tv_sec);
4125 struct timespec64 *time)
4129 time->tv_sec = 0;
4130 time->tv_nsec = 0;
4134 status = decode_attr_time(xdr, time);
4137 dprintk("%s: time_delta=%lld %ld\n", __func__, time->tv_sec,
4138 time->tv_nsec);
4191 static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec64 *time)
4195 time->tv_sec = 0;
4196 time->tv_nsec = 0;
4200 status = decode_attr_time(xdr, time);
4205 dprintk("%s: mtime=%lld\n", __func__, time->tv_sec);