Lines Matching refs:nh_priv
141 struct nhop_priv *nh_priv; in nhops_destroy_rib() local
159 CHT_SLIST_FOREACH(&ctl->nh_head, nhops, nh_priv) { in nhops_destroy_rib()
160 FIB_RH_LOG(LOG_DEBUG3, rh, "marking nhop %u unlinked", nh_priv->nh_idx); in nhops_destroy_rib()
161 refcount_release(&nh_priv->nh_linked); in nhops_destroy_rib()
284 link_nhop(struct nh_control *ctl, struct nhop_priv *nh_priv) in link_nhop() argument
289 KASSERT((nh_priv->nh_idx == 0), ("nhop index is already allocated")); in link_nhop()
308 nh_priv->nh_idx = idx; in link_nhop()
309 nh_priv->nh_control = ctl; in link_nhop()
310 nh_priv->nh_finalized = 1; in link_nhop()
312 CHT_SLIST_INSERT_HEAD(&ctl->nh_head, nhops, nh_priv); in link_nhop()
318 nh_priv, idx, hash_priv(nh_priv), ctl); in link_nhop()
378 find_nhop(struct nh_control *ctl, const struct nhop_priv *nh_priv) in find_nhop() argument
383 CHT_SLIST_FIND_BYOBJ(&ctl->nh_head, nhops, nh_priv, nh_priv_ret); in find_nhop()