# HG changeset patch # Parent 38007bfed54ced9b0c27e104a7bc332cab978182 lle_event replaced arp_update_event after the ARP rewrite and ended up in if_ether.h. if_llatbl.h is a more appropriate place for it, specially now that IPv6 neighbor discovery code is going to grow support for this event. The two in-tree consumers of this event - OFED and toecore - are not affected. diff -r 38007bfed54c sys/net/if_llatbl.h --- a/sys/net/if_llatbl.h Tue Jan 15 11:46:33 2013 -0800 +++ b/sys/net/if_llatbl.h Tue Jan 15 12:07:40 2013 -0800 @@ -205,4 +205,14 @@ lla_lookup(struct lltable *llt, u_int fl } int lla_rt_output(struct rt_msghdr *, struct rt_addrinfo *); + +#include +enum { + LLENTRY_RESOLVED, + LLENTRY_TIMEDOUT, + LLENTRY_DELETED, + LLENTRY_EXPIRED, +}; +typedef void (*lle_event_fn)(void *, struct llentry *, int); +EVENTHANDLER_DECLARE(lle_event, lle_event_fn); #endif /* _NET_IF_LLATBL_H_ */ diff -r 38007bfed54c sys/netinet/if_ether.h --- a/sys/netinet/if_ether.h Tue Jan 15 11:46:33 2013 -0800 +++ b/sys/netinet/if_ether.h Tue Jan 15 12:07:40 2013 -0800 @@ -120,17 +120,6 @@ void arprequest(struct ifnet *, struct i void arp_ifinit(struct ifnet *, struct ifaddr *); void arp_ifinit2(struct ifnet *, struct ifaddr *, u_char *); void arp_ifscrub(struct ifnet *, uint32_t); - -#include -enum { - LLENTRY_RESOLVED, - LLENTRY_TIMEDOUT, - LLENTRY_DELETED, - LLENTRY_EXPIRED, -}; -typedef void (*lle_event_fn)(void *, struct llentry *, int); -EVENTHANDLER_DECLARE(lle_event, lle_event_fn); - #endif #endif