Lines Matching defs:cmdsts
1434 uint32_t cmdsts, extsts;
1457 cmdsts = le32toh(cur_rx->nge_cmdsts);
1459 if ((cmdsts & NGE_CMDSTS_OWN) == 0)
1464 total_len = cmdsts & NGE_CMDSTS_BUFLEN;
1466 if ((cmdsts & NGE_CMDSTS_MORE) != 0) {
1495 if ((cmdsts & NGE_CMDSTS_PKT_OK) == 0) {
1496 if ((cmdsts & NGE_RXSTAT_RUNT) &&
1608 uint32_t cmdsts;
1629 cmdsts = le32toh(cur_tx->nge_cmdsts);
1630 if ((cmdsts & NGE_CMDSTS_OWN) != 0)
1634 if ((cmdsts & NGE_CMDSTS_MORE) != 0)
1641 if ((cmdsts & NGE_CMDSTS_PKT_OK) == 0) {
1643 if ((cmdsts & NGE_TXSTAT_EXCESSCOLLS) != 0)
1645 if ((cmdsts & NGE_TXSTAT_OUTOFWINCOLL) != 0)
1650 if_inc_counter(ifp, IFCOUNTER_COLLISIONS, (cmdsts & NGE_TXSTAT_COLLCNT) >> 16);