Lines Matching defs:rx_status
1613 s32 rx_status = np->cur_rx->status;
1619 printk(KERN_DEBUG " netdev_rx() status was %8.8x.\n", rx_status);
1621 if ((!((rx_status & RXFSD) && (rx_status & RXLSD))) ||
1622 (rx_status & ErrorSummary)) {
1623 if (rx_status & ErrorSummary) { /* there was a fatal error */
1627 dev->name, rx_status);
1630 if (rx_status & (LONGPKT | RUNTPKT))
1632 if (rx_status & RXER)
1634 if (rx_status & CRC)
1640 if (rx_status & RXFSD) { /* this pkt is too long, over one rx buffer */
1685 short pkt_len = ((rx_status & FLNGMASK) >> FLNGShift) - 4;
1690 " status %x.\n", pkt_len, rx_status);