Searched refs:myiod (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/sys/fs/nfsclient/
H A Dnfs_clnfsiod.c247 int myiod, timo; local
251 myiod = (int *)instance - nfs_asyncdaemon;
256 while (((nmp = ncl_iodmount[myiod]) == NULL)
258 if (myiod >= ncl_iodmax)
262 if (ncl_iodwant[myiod] == NFSIOD_NOT_AVAILABLE)
263 ncl_iodwant[myiod] = NFSIOD_AVAILABLE;
264 ncl_iodmount[myiod] = NULL;
268 timo = (myiod < nfs_iodmin) ? 0 : nfs_iodmaxidle * hz;
269 error = msleep(&ncl_iodwant[myiod], &ncl_iod_mutex, PWAIT | PCATCH,
272 nmp = ncl_iodmount[myiod];
[all...]
/freebsd-10.0-release/sys/nfsclient/
H A Dnfs_nfsiod.c245 int myiod, timo; local
249 myiod = (int *)instance - nfs_asyncdaemon;
254 while (((nmp = nfs_iodmount[myiod]) == NULL)
256 if (myiod >= nfs_iodmax)
260 if (nfs_iodwant[myiod] == NFSIOD_NOT_AVAILABLE)
261 nfs_iodwant[myiod] = NFSIOD_AVAILABLE;
262 nfs_iodmount[myiod] = NULL;
266 timo = (myiod < nfs_iodmin) ? 0 : nfs_iodmaxidle * hz;
267 error = msleep(&nfs_iodwant[myiod], &nfs_iod_mtx, PWAIT | PCATCH,
270 nmp = nfs_iodmount[myiod];
[all...]

Completed in 67 milliseconds