Lines Matching defs:thp
3928 struct nfsrv_lughash *hp_name, *hp_idnum, *thp;
4109 thp = NFSUSERHASH(usrp->lug_uid);
4110 mtx_lock(&thp->mtx);
4112 mtx_unlock(&thp->mtx);
4138 thp = NFSGROUPHASH(usrp->lug_gid);
4139 mtx_lock(&thp->mtx);
4141 mtx_unlock(&thp->mtx);
4157 thp = NFSUSERHASH(newusrp->lug_uid);
4158 mtx_assert(&thp->mtx, MA_OWNED);
4159 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_numhash);
4160 thp = NFSUSERNAMEHASH(newusrp->lug_name, newusrp->lug_namelen);
4161 mtx_assert(&thp->mtx, MA_OWNED);
4162 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_namehash);
4166 thp = NFSGROUPHASH(newusrp->lug_gid);
4167 mtx_assert(&thp->mtx, MA_OWNED);
4168 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_numhash);
4169 thp = NFSGROUPNAMEHASH(newusrp->lug_name, newusrp->lug_namelen);
4170 mtx_assert(&thp->mtx, MA_OWNED);
4171 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_namehash);