Use pfxrtr_del() instead of freeing advertising routers directly.

MFC after:	1 week
This commit is contained in:
Mark Johnston 2016-02-17 23:55:24 +00:00
parent 19fa242679
commit 38dd603f8c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=295730

View File

@ -936,9 +936,9 @@ prelist_remove(struct nd_prefix *pr)
/* unlink ndpr_entry from nd_prefix list */
LIST_REMOVE(pr, ndpr_entry);
/* free list of routers that adversed the prefix */
/* free list of routers that advertised the prefix */
LIST_FOREACH_SAFE(pfr, &pr->ndpr_advrtrs, pfr_entry, next) {
free(pfr, M_IP6NDP);
pfxrtr_del(pfr);
}
free(pr, M_IP6NDP);