Lines Matching defs:lt
643 lnode_t *lt;
666 for (lt = TABLE_BUCKET(lp->lo_vp, li); lt != NULL;
667 ltprev = lt, lt = lt->lo_next) {
668 if (lt == lp) {
699 TABLE_BUCKET(lt->lo_vp, li) = lt->lo_next;
701 ltprev->lo_next = lt->lo_next;
703 TABLE_COUNT(lt->lo_vp, li)--;
704 TABLE_LOCK_EXIT(lt->lo_vp, li);
705 kmem_cache_free(lnode_cache, lt);
721 lnode_t *lt;
725 lt = TABLE_BUCKET(vp, li);
726 while (lt != NULL) {
727 if (lt->lo_vp == vp) {
728 VN_HOLD(ltov(lt));
729 return (lt);
731 lt = lt->lo_next;