Lines Matching refs:rx_status
2529 short rx_status; in vortex_rx() local
2534 while ((rx_status = ioread16(ioaddr + RxStatus)) > 0) { in vortex_rx()
2535 if (rx_status & 0x4000) { /* Error, update stats. */ in vortex_rx()
2547 int pkt_len = rx_status & 0x1fff; in vortex_rx()
2553 pkt_len, rx_status); in vortex_rx()
2598 int rx_status; in boomerang_rx() local
2604 while ((rx_status = le32_to_cpu(vp->rx_ring[entry].status)) & RxDComplete){ in boomerang_rx()
2607 if (rx_status & RxDError) { /* Error, update stats. */ in boomerang_rx()
2608 unsigned char rx_error = rx_status >> 16; in boomerang_rx()
2619 int pkt_len = rx_status & 0x1fff; in boomerang_rx()
2625 pkt_len, rx_status); in boomerang_rx()
2649 int csum_bits = rx_status & 0xee000000; in boomerang_rx()