Home
last modified time | relevance | path

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

/src/sys/dev/rge/
H A Dif_rge.c2104 uint32_t rxstat, extsts; in rge_rxeof() local
2232 extsts = le32toh(cur_rx->hi_qword1.rx_qword4.rge_extsts); in rge_rxeof()
2237 if (extsts & RGE_RDEXTSTS_IPV4) { in rge_rxeof()
2244 if (((extsts & RGE_RDEXTSTS_IPCSUMERR) == 0) in rge_rxeof()
2245 && ((extsts & RGE_RDEXTSTS_IPV4) != 0)) { in rge_rxeof()
2252 if ((extsts & (RGE_RDEXTSTS_IPV4 | RGE_RDEXTSTS_IPV6)) && in rge_rxeof()
2253 (extsts & RGE_RDEXTSTS_TCPPKT)) { in rge_rxeof()
2255 if ((extsts & RGE_RDEXTSTS_TCPCSUMERR) == 0) { in rge_rxeof()
2264 if ((extsts & (RGE_RDEXTSTS_IPV4 | RGE_RDEXTSTS_IPV6)) && in rge_rxeof()
2265 (extsts & RGE_RDEXTSTS_UDPPKT)) { in rge_rxeof()
[all …]
/src/sys/dev/nge/
H A Dif_nge.c1434 uint32_t cmdsts, extsts; in nge_rxeof() local
1458 extsts = le32toh(cur_rx->nge_extsts); in nge_rxeof()
1559 if ((extsts & NGE_RXEXTSTS_IPPKT) != 0) in nge_rxeof()
1561 if ((extsts & NGE_RXEXTSTS_IPCSUMERR) == 0) in nge_rxeof()
1563 if ((extsts & NGE_RXEXTSTS_TCPPKT && in nge_rxeof()
1564 !(extsts & NGE_RXEXTSTS_TCPCSUMERR)) || in nge_rxeof()
1565 (extsts & NGE_RXEXTSTS_UDPPKT && in nge_rxeof()
1566 !(extsts & NGE_RXEXTSTS_UDPCSUMERR))) { in nge_rxeof()
1577 if ((extsts & NGE_RXEXTSTS_VLANPKT) != 0 && in nge_rxeof()
1580 bswap16(extsts & NGE_RXEXTSTS_VTCI); in nge_rxeof()