Lines Matching refs:rx_status
1619 s32 rx_status = np->cur_rx->status; in netdev_rx() local
1625 printk(KERN_DEBUG " netdev_rx() status was %8.8x.\n", rx_status); in netdev_rx()
1627 if ((!((rx_status & RXFSD) && (rx_status & RXLSD))) || in netdev_rx()
1628 (rx_status & ErrorSummary)) { in netdev_rx()
1629 if (rx_status & ErrorSummary) { /* there was a fatal error */ in netdev_rx()
1633 dev->name, rx_status); in netdev_rx()
1636 if (rx_status & (LONG | RUNT)) in netdev_rx()
1638 if (rx_status & RXER) in netdev_rx()
1640 if (rx_status & CRC) in netdev_rx()
1646 if (rx_status & RXFSD) { /* this pkt is too long, over one rx buffer */ in netdev_rx()
1691 short pkt_len = ((rx_status & FLNGMASK) >> FLNGShift) - 4; in netdev_rx()
1696 " status %x.\n", pkt_len, rx_status); in netdev_rx()