| 659 | } |
| 660 | |
| 661 | static void |
| 662 | pfxrtr_del(struct nd_pfxrouter *pfr) |
| 663 | { |
| 664 | |
| 665 | ND6_WLOCK_ASSERT(); |
| 666 | |
| 667 | LIST_REMOVE(pfr, pfr_entry); |
| 668 | defrouter_rele(pfr->router); |
| 669 | free(pfr, M_IP6NDP); |
| 670 | } |
| 671 | |
| 672 | /* Default router list processing sub routines. */ |
| 673 | static void |
no test coverage detected