| 1341 | } |
| 1342 | |
| 1343 | void |
| 1344 | nd6_prefix_rele(struct nd_prefix *pr) |
| 1345 | { |
| 1346 | |
| 1347 | if (refcount_release(&pr->ndpr_refcnt)) { |
| 1348 | KASSERT(LIST_EMPTY(&pr->ndpr_advrtrs), |
| 1349 | ("prefix %p has advertising routers", pr)); |
| 1350 | free(pr, M_IP6NDP); |
| 1351 | } |
| 1352 | } |
| 1353 | |
| 1354 | int |
| 1355 | nd6_prelist_add(struct nd_prefixctl *pr, struct nd_defrouter *dr, |
no test coverage detected