Home
last modified time | relevance | path

Searched refs:crc_index (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/io/vr/
H A Dvr.c2034 uint32_t crc_index; in vr_mac_set_multicast() local
2124 crc_index = ether_crc_be(mca) >> (32 - 6); in vr_mac_set_multicast()
2129 if (crc_index < 32) in vr_mac_set_multicast()
2130 vrp->mhash0 |= (1 << crc_index); in vr_mac_set_multicast()
2132 vrp->mhash1 |= (1 << (crc_index - 32)); in vr_mac_set_multicast()
2137 if (crc_index < 32) in vr_mac_set_multicast()
2138 vrp->mhash0 &= ~(0 << crc_index); in vr_mac_set_multicast()
2140 vrp->mhash1 &= ~(0 << (crc_index - 32)); in vr_mac_set_multicast()