Home | History | Annotate | Download | only in nfs

Lines Matching defs:iod

735 	struct nfs_iod *iod;
756 * Find a free iod to process this request.
760 iod = LIST_FIRST(&nfs_iodlist_idle);
761 if (iod) {
766 LIST_REMOVE(iod, nid_idle);
767 mutex_enter(&iod->nid_lock);
769 KASSERT(iod->nid_mount == NULL);
770 iod->nid_mount = nmp;
771 cv_signal(&iod->nid_cv);
773 mutex_exit(&iod->nid_lock);
786 * If we have an iod which can process the request, then queue
787 * the buffer. However, even if we have an iod, do not initiate
830 * We might have lost our iod while sleeping,