Lines Matching defs:thp
3191 struct nfsrv_lughash *hp_name, *hp_idnum, *thp;
3370 thp = NFSUSERHASH(usrp->lug_uid);
3371 mtx_lock(&thp->mtx);
3373 mtx_unlock(&thp->mtx);
3399 thp = NFSGROUPHASH(usrp->lug_gid);
3400 mtx_lock(&thp->mtx);
3402 mtx_unlock(&thp->mtx);
3418 thp = NFSUSERHASH(newusrp->lug_uid);
3419 mtx_assert(&thp->mtx, MA_OWNED);
3420 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_numhash);
3421 thp = NFSUSERNAMEHASH(newusrp->lug_name, newusrp->lug_namelen);
3422 mtx_assert(&thp->mtx, MA_OWNED);
3423 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_namehash);
3427 thp = NFSGROUPHASH(newusrp->lug_gid);
3428 mtx_assert(&thp->mtx, MA_OWNED);
3429 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_numhash);
3430 thp = NFSGROUPNAMEHASH(newusrp->lug_name, newusrp->lug_namelen);
3431 mtx_assert(&thp->mtx, MA_OWNED);
3432 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_namehash);