Home
last modified time | relevance | path

Searched refs:un_new (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/netlink/route/
H A Dnexthop.c197 struct user_nhop *un_new, *un_tmp; in nl_find_nhop() local
198 un_new = malloc(sizeof(struct user_nhop), M_NETLINK, M_NOWAIT | M_ZERO); in nl_find_nhop()
199 if (un_new == NULL) { in nl_find_nhop()
203 un_new->un_idx = uidx; in nl_find_nhop()
204 un_new->un_fibfam = fibnum | ((uint32_t)family) << 24; in nl_find_nhop()
207 un_new->un_nhop = clone_unhop(unhop, fibnum, family, nh_flags); in nl_find_nhop()
208 if (un_new->un_nhop == NULL) { in nl_find_nhop()
209 free(un_new, M_NETLINK); in nl_find_nhop()
223 destroy_unhop(un_new); in nl_find_nhop()
228 CHT_SLIST_FIND_BYOBJ(&ctl->un_head, unhop, un_new, un_tmp); in nl_find_nhop()
[all …]