Home
last modified time | relevance | path

Searched refs:nm_timeo (Results 1 – 3 of 3) sorted by relevance

/xnu-8020.101.4/bsd/nfs/
H A Dnfsmount.h281 int nm_timeo; /* Init timer for NFSMNT_DUMBTIMR */ member
H A Dnfs_vfsops.c2390 nmp->nm_timeo = NFS_TIMEO; in mountnfs()
2672 xb_get_32(error, &xb, nmp->nm_timeo); in mountnfs()
2679 nmp->nm_timeo *= 10; in mountnfs()
2680 nmp->nm_timeo += (val + 100000000 - 1) / 100000000; in mountnfs()
2682 nmp->nm_timeo = (nmp->nm_timeo * NFS_HZ + 5) / 10; in mountnfs()
2966 if (nmp->nm_timeo < NFS_MINTIMEO) { in mountnfs()
2967 nmp->nm_timeo = NFS_MINTIMEO; in mountnfs()
2968 } else if (nmp->nm_timeo > NFS_MAXTIMEO) { in mountnfs()
2969 nmp->nm_timeo = NFS_MAXTIMEO; in mountnfs()
5486 timeo = (nmp->nm_timeo * 10) / NFS_HZ; in nfs_mountinfo_assemble()
H A Dnfs_socket.c207 ((t) == 0 ? (n)->nm_timeo : \
5375 timeo = nmp->nm_timeo; in nfs_request_timer()