| 1219 | } |
| 1220 | |
| 1221 | static void |
| 1222 | nd6_dad_rele(struct dadq *dp) |
| 1223 | { |
| 1224 | |
| 1225 | if (refcount_release(&dp->dad_refcnt)) { |
| 1226 | ifa_free(dp->dad_ifa); |
| 1227 | free(dp, M_IP6NDP); |
| 1228 | } |
| 1229 | } |
| 1230 | |
| 1231 | void |
| 1232 | nd6_dad_init(void) |
no test coverage detected