timep             212 fs/nfs/nfs2xdr.c static __be32 *xdr_encode_time(__be32 *p, const struct timespec *timep)
timep             214 fs/nfs/nfs2xdr.c 	*p++ = cpu_to_be32(timep->tv_sec);
timep             215 fs/nfs/nfs2xdr.c 	if (timep->tv_nsec != 0)
timep             216 fs/nfs/nfs2xdr.c 		*p++ = cpu_to_be32(timep->tv_nsec / NSEC_PER_USEC);
timep             230 fs/nfs/nfs2xdr.c 					      const struct timespec *timep)
timep             232 fs/nfs/nfs2xdr.c 	*p++ = cpu_to_be32(timep->tv_sec);
timep             237 fs/nfs/nfs2xdr.c static __be32 *xdr_decode_time(__be32 *p, struct timespec *timep)
timep             239 fs/nfs/nfs2xdr.c 	timep->tv_sec = be32_to_cpup(p++);
timep             240 fs/nfs/nfs2xdr.c 	timep->tv_nsec = be32_to_cpup(p++) * NSEC_PER_USEC;
timep             459 fs/nfs/nfs3xdr.c static __be32 *xdr_encode_nfstime3(__be32 *p, const struct timespec *timep)
timep             461 fs/nfs/nfs3xdr.c 	*p++ = cpu_to_be32(timep->tv_sec);
timep             462 fs/nfs/nfs3xdr.c 	*p++ = cpu_to_be32(timep->tv_nsec);
timep             466 fs/nfs/nfs3xdr.c static __be32 *xdr_decode_nfstime3(__be32 *p, struct timespec *timep)
timep             468 fs/nfs/nfs3xdr.c 	timep->tv_sec = be32_to_cpup(p++);
timep             469 fs/nfs/nfs3xdr.c 	timep->tv_nsec = be32_to_cpup(p++);