summaryrefslogtreecommitdiffstats
path: root/sys/dev/ed
diff options
context:
space:
mode:
authornaddy <naddy@FreeBSD.org>2004-06-09 14:34:04 +0000
committernaddy <naddy@FreeBSD.org>2004-06-09 14:34:04 +0000
commit03b06cd9a3bb0e9d75237994d18bd6d3b6469ac1 (patch)
tree63c1a8adb963adf2b159557569195cbc8c219d33 /sys/dev/ed
parentd57aeb149e038b4931b3859597fe80119588eebc (diff)
downloadFreeBSD-src-03b06cd9a3bb0e9d75237994d18bd6d3b6469ac1.zip
FreeBSD-src-03b06cd9a3bb0e9d75237994d18bd6d3b6469ac1.tar.gz
Replace handrolled CRC calculation with ether_crc32_[lb]e().
Diffstat (limited to 'sys/dev/ed')
-rw-r--r--sys/dev/ed/if_ed.c30
1 files changed, 2 insertions, 28 deletions
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index c3eb45f..13c3ef1 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -104,8 +104,6 @@ static u_short ed_pio_write_mbufs(struct ed_softc *, struct mbuf *, long);
static void ed_setrcr (struct ed_softc *);
-static uint32_t ds_mchash (const uint8_t *);
-
/*
* Interrupt conversion table for WD/SMC ASIC/83C584
*/
@@ -3520,30 +3518,6 @@ ed_setrcr(sc)
}
/*
- * Compute crc for ethernet address
- */
-static uint32_t
-ds_mchash(addr)
- const uint8_t *addr;
-{
-#define ED_POLYNOMIAL 0x04c11db6
- register uint32_t crc = 0xffffffff;
- register int carry, idx, bit;
- register uint8_t data;
-
- for (idx = 6; --idx >= 0;) {
- for (data = *addr++, bit = 8; --bit >= 0; data >>=1 ) {
- carry = ((crc & 0x80000000) ? 1 : 0) ^ (data & 0x01);
- crc <<= 1;
- if (carry)
- crc = (crc ^ ED_POLYNOMIAL) | carry;
- }
- }
- return crc;
-#undef POLYNOMIAL
-}
-
-/*
* Compute the multicast address filter from the
* list of multicast addresses we need to listen to.
*/
@@ -3562,8 +3536,8 @@ ds_getmcaf(sc, mcaf)
TAILQ_FOREACH(ifma, &sc->arpcom.ac_if.if_multiaddrs, ifma_link) {
if (ifma->ifma_addr->sa_family != AF_LINK)
continue;
- index = ds_mchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr))
- >> 26;
+ index = ether_crc32_be(LLADDR((struct sockaddr_dl *)
+ ifma->ifma_addr), ETHER_ADDR_LEN) >> 26;
af[index >> 3] |= 1 << (index & 7);
}
}
OpenPOWER on IntegriCloud