MCPcopy Create free account
hub / github.com/F-Stack/f-stack / lltable_prefix_free

Function lltable_prefix_free

freebsd/net/if_llatbl.c:550–564  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

548}
549
550void
551lltable_prefix_free(int af, struct sockaddr *addr, struct sockaddr *mask,
552 u_int flags)
553{
554 struct lltable *llt;
555
556 LLTABLE_LIST_RLOCK();
557 SLIST_FOREACH(llt, &V_lltables, llt_link) {
558 if (llt->llt_af != af)
559 continue;
560
561 llt->llt_prefix_free(llt, addr, mask, flags);
562 }
563 LLTABLE_LIST_RUNLOCK();
564}
565
566struct lltable *
567lltable_allocate_htbl(uint32_t hsize)

Callers 3

in_scrubprefixlleFunction · 0.85
nd6_rem_ifa_lleFunction · 0.85
nd6_prefix_offlinkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected