| 2286 | } |
| 2287 | |
| 2288 | static void |
| 2289 | in6_lltable_delete_entry(struct lltable *llt, struct llentry *lle) |
| 2290 | { |
| 2291 | |
| 2292 | lle->la_flags |= LLE_DELETED; |
| 2293 | EVENTHANDLER_INVOKE(lle_event, lle, LLENTRY_DELETED); |
| 2294 | #ifdef DIAGNOSTIC |
| 2295 | log(LOG_INFO, "ifaddr cache = %p is deleted\n", lle); |
| 2296 | #endif |
| 2297 | llentry_free(lle); |
| 2298 | } |
| 2299 | |
| 2300 | static struct llentry * |
| 2301 | in6_lltable_alloc(struct lltable *llt, u_int flags, |
nothing calls this directly
no test coverage detected