Searched refs:lltable (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.3-release/sys/net/
H A Dif_llatbl.h58 struct lltable *lle_tbl;
60 void (*lle_free)(struct lltable *, struct llentry *);
147 struct lltable { struct
148 SLIST_ENTRY(lltable) llt_link;
153 void (*llt_prefix_free)(struct lltable *,
157 struct llentry * (*llt_lookup)(struct lltable *, u_int flags,
159 int (*llt_dump)(struct lltable *,
180 struct lltable *lltable_init(struct ifnet *, int);
181 void lltable_free(struct lltable *);
190 struct llentry *llentry_alloc(struct ifnet *, struct lltable *,
[all...]
H A Dif_llatbl.c63 MALLOC_DEFINE(M_LLTABLE, "lltable", "link level address tables");
65 static VNET_DEFINE(SLIST_HEAD(, lltable), lltables) =
78 struct lltable *llt;
138 llentry_alloc(struct ifnet *ifp, struct lltable *lt,
166 lltable_free(struct lltable *llt)
174 SLIST_REMOVE(&V_lltables, llt, lltable, llt_link);
195 struct lltable *llt;
223 struct lltable *llt;
238 * Create a new lltable.
240 struct lltable *
[all...]
H A Dflowtable.c506 struct lltable *lt = NULL;
/freebsd-10.3-release/sys/netinet6/
H A Din6_var.h98 struct lltable;
109 struct lltable *lltable; member in struct:in6_ifextra
119 struct lltable *lltable; member in struct:in6_ifextra
124 #define LLTABLE6(ifp) (((struct in6_ifextra *)(ifp)->if_afdata[AF_INET6])->lltable)
H A Din6.c1515 /* Remove local address entry from lltable. */
1938 /* Add local address to lltable, if necessary (ex. on p2p link). */
2502 in6_lltable_free(struct lltable *llt, struct llentry *lle)
2528 in6_lltable_prefix_free(struct lltable *llt, const struct sockaddr *prefix,
2598 in6_lltable_lookup(struct lltable *llt, u_int flags,
2676 in6_lltable_dump(struct lltable *llt, struct sysctl_req *wr)
2781 ext->lltable = lltable_init(ifp, AF_INET6);
2782 if (ext->lltable != NULL) {
2783 ext->lltable->llt_prefix_free = in6_lltable_prefix_free;
2784 ext->lltable
[all...]
/freebsd-10.3-release/sys/netinet/
H A Din_var.h42 struct lltable;
48 struct lltable *ii_llt; /* ARP state */
H A Din.c1241 in_lltable_free(struct lltable *llt, struct llentry *lle)
1275 in_lltable_prefix_free(struct lltable *llt, const struct sockaddr *prefix,
1385 in_lltable_lookup(struct lltable *llt, u_int flags, const struct sockaddr *l3addr)
1466 in_lltable_dump(struct lltable *llt, struct sysctl_req *wr)
1544 struct lltable *llt;

Completed in 121 milliseconds