HomeSort by: relevance | last modified time | path
    Searched refs:nm_timeo (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/fs/nfs/client/
nfsmount.h 98 #define nm_timeo nm_com.nmcom_timeo macro
nfs_clvfsops.c 593 nmp->nm_timeo = NFS_MAXTIMEO;
618 nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
619 if (nmp->nm_timeo < NFS_MINTIMEO)
620 nmp->nm_timeo = NFS_MINTIMEO;
621 else if (nmp->nm_timeo > NFS_MAXTIMEO)
622 nmp->nm_timeo = NFS_MAXTIMEO;
1447 nmp->nm_timeo = NFS_TIMEO;
1889 timeop->tv_sec = nmp->nm_timeo / NFS_HZ;
1890 timeop->tv_usec = (nmp->nm_timeo % NFS_HZ) * (1000000 / NFS_HZ);
2000 nfscl_printoptval(nmp, nmp->nm_timeo, ",timeout", &buf, &blen)
    [all...]
  /src/sys/nfs/
nfsmount.h 143 int nm_timeo; /* Init timer for NFSMNT_DUMBTIMR */ member in struct:nfsmount
nfs_vfsops.c 471 nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
472 if (nmp->nm_timeo < NFS_MINTIMEO)
473 nmp->nm_timeo = NFS_MINTIMEO;
474 else if (nmp->nm_timeo > NFS_MAXTIMEO)
475 nmp->nm_timeo = NFS_MAXTIMEO;
613 args->timeo = nmp->nm_timeo;
738 nmp->nm_timeo = NFS_TIMEO;
nfs_socket.c 98 * other - nm_timeo
101 ((t) == 0 ? (n)->nm_timeo : \
378 (time_uptime - before_ts > nmp->nm_timeo / NFS_HZ))
778 timeo = nmp->nm_timeo;
928 slptimeo = nmp->nm_retry * nmp->nm_timeo;
nfs_var.h 220 * other - nm_timeo
223 ((t) == 0 ? (n)->nm_timeo : \
nfs_bio.c 623 slptimeo = nmp->nm_retry * nmp->nm_timeo;
746 slptimeo = nmp->nm_retry * nmp->nm_timeo;
nfs_clntsocket.c 981 timeo = nmp->nm_retry * nmp->nm_timeo;
  /src/sys/fs/nfs/common/
nfs_commonkrpc.c 280 * will be set to "nm_retry * nm_timeo / 2", so
339 timo.tv_sec = nmp->nm_timeo / NFS_HZ;
340 timo.tv_usec = (nmp->nm_timeo % NFS_HZ) * 1000000 / NFS_HZ;
723 timeo = nmp->nm_retry * nmp->nm_timeo / 2;

Completed in 18 milliseconds