Lines Matching refs:child_lle

441 	struct llentry *child_lle;  in llentry_lookup_family()  local
446 CK_SLIST_FOREACH(child_lle, &lle->lle_children, lle_child_next) { in llentry_lookup_family()
447 if (child_lle->r_family == family) in llentry_lookup_family()
448 return (child_lle); in llentry_lookup_family()
526 struct llentry *child_lle; in llentry_request_feedback() local
532 CK_SLIST_FOREACH(child_lle, &lle->lle_children, lle_child_next) { in llentry_request_feedback()
533 LLE_REQ_LOCK(child_lle); in llentry_request_feedback()
534 child_lle->r_skip_req = 1; in llentry_request_feedback()
535 LLE_REQ_UNLOCK(child_lle); in llentry_request_feedback()
575 struct llentry *child_lle; in llentry_get_hittime() local
579 CK_SLIST_FOREACH(child_lle, &lle->lle_children, lle_child_next) { in llentry_get_hittime()
580 time_t hittime = llentry_get_hittime_raw(child_lle); in llentry_get_hittime()
914 lltable_link_child_entry(struct llentry *lle, struct llentry *child_lle) in lltable_link_child_entry() argument
916 child_lle->lle_parent = lle; in lltable_link_child_entry()
917 child_lle->lle_tbl = lle->lle_tbl; in lltable_link_child_entry()
918 child_lle->la_flags |= LLE_LINKED; in lltable_link_child_entry()
919 CK_SLIST_INSERT_HEAD(&lle->lle_children, child_lle, lle_child_next); in lltable_link_child_entry()
923 lltable_unlink_child_entry(struct llentry *child_lle) in lltable_unlink_child_entry() argument
925 struct llentry *lle = child_lle->lle_parent; in lltable_unlink_child_entry()
927 child_lle->la_flags &= ~LLE_LINKED; in lltable_unlink_child_entry()
928 child_lle->lle_parent = NULL; in lltable_unlink_child_entry()
929 CK_SLIST_REMOVE(&lle->lle_children, child_lle, llentry, lle_child_next); in lltable_unlink_child_entry()