From f70f525b491a7d4a0a4f60eb7d69095f6f6e12e4 Mon Sep 17 00:00:00 2001 From: ru Date: Fri, 11 Nov 2005 16:04:59 +0000 Subject: - Store pointer to the link-level address right in "struct ifnet" rather than in ifindex_table[]; all (except one) accesses are through ifp anyway. IF_LLADDR() works faster, and all (except one) ifaddr_byindex() users were converted to use ifp->if_addr. - Stop storing a (pointer to) Ethernet address in "struct arpcom", and drop the IFP2ENADDR() macro; all users have been converted to use IF_LLADDR() instead. --- sys/dev/an/if_an.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/dev/an/if_an.c') diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index 18b75c3..cb22492 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -112,6 +112,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #include #include @@ -1737,7 +1738,7 @@ an_setdef(struct an_softc *sc, struct an_req *areq) case AN_RID_GENCONFIG: cfg = (struct an_ltv_genconfig *)areq; - bcopy((char *)&cfg->an_macaddr, IFP2ENADDR(sc->an_ifp), + bcopy((char *)&cfg->an_macaddr, IF_LLADDR(sc->an_ifp), ETHER_ADDR_LEN); bcopy((char *)cfg, (char *)&sc->an_config, @@ -2494,7 +2495,7 @@ an_init(void *xsc) } /* Set our MAC address. */ - bcopy((char *)IFP2ENADDR(sc->an_ifp), + bcopy((char *)IF_LLADDR(sc->an_ifp), (char *)&sc->an_config.an_macaddr, ETHER_ADDR_LEN); if (ifp->if_flags & IFF_BROADCAST) -- cgit v1.1