Symbol: NFS_HZ
sys/fs/nfs/client/nfs_clvfsops.c
1889
timeop->tv_sec = nmp->nm_timeo / NFS_HZ;
sys/fs/nfs/client/nfs_clvfsops.c
1890
timeop->tv_usec = (nmp->nm_timeo % NFS_HZ) * (1000000 / NFS_HZ);
sys/fs/nfs/client/nfs_clvfsops.c
618
nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
sys/fs/nfs/common/nfs.h
46
#define NFS_TIMEO (1 * NFS_HZ) /* Default timeout = 1 second */
sys/fs/nfs/common/nfs.h
47
#define NFS_MINTIMEO (1 * NFS_HZ) /* Min timeout to use */
sys/fs/nfs/common/nfs.h
48
#define NFS_MAXTIMEO (60 * NFS_HZ) /* Max timeout to backoff to */
sys/fs/nfs/common/nfs.h
51
#define NFS_MINIDEMTIMEO (5 * NFS_HZ) /* Min timeout for non-idempotent ops*/
sys/fs/nfs/common/nfs.h
53
#define NFSV4_CALLBACKTIMEO (2 * NFS_HZ) /* Timeout in ticks */
sys/fs/nfs/common/nfs.h
58
#define NFSV4_UPCALLTIMEO (15 * NFS_HZ) /* Timeout in ticks for upcalls */
sys/fs/nfs/common/nfs_commonkrpc.c
339
timo.tv_sec = nmp->nm_timeo / NFS_HZ;
sys/fs/nfs/common/nfs_commonkrpc.c
340
timo.tv_usec = (nmp->nm_timeo % NFS_HZ) * 1000000 / NFS_HZ;
sys/fs/nfs/common/nfs_commonkrpc.c
726
timo.tv_sec = timeo / NFS_HZ;
sys/fs/nfs/common/nfs_commonkrpc.c
727
timo.tv_usec = (timeo % NFS_HZ) * 1000000 /
sys/fs/nfs/common/nfs_commonkrpc.c
728
NFS_HZ;
sys/fs/nfs/common/nfs_commonkrpc.c
731
timo.tv_sec = NFS_MAXTIMEO / NFS_HZ;
sys/nfs/nfs.h
56
#define NFS_TIMEO (3 * NFS_HZ) /* Default timeout = 3 seconds */
sys/nfs/nfs.h
57
#define NFS_MINTIMEO (1 * NFS_HZ) /* Min timeout to use */
sys/nfs/nfs.h
58
#define NFS_MAXTIMEO (60 * NFS_HZ) /* Max timeout to backoff to */
sys/nfs/nfs.h
59
#define NFS_MINIDEMTIMEO (5 * NFS_HZ) /* Min timeout for non-idempotent ops*/
sys/nfs/nfs_socket.c
378
(time_uptime - before_ts > nmp->nm_timeo / NFS_HZ))
sys/nfs/nfs_vfsops.c
471
nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;