Lines Matching refs:rx_status
2512 short rx_status; in vortex_rx() local
2517 while ((rx_status = ioread16(ioaddr + RxStatus)) > 0) { in vortex_rx()
2518 if (rx_status & 0x4000) { /* Error, update stats. */ in vortex_rx()
2530 int pkt_len = rx_status & 0x1fff; in vortex_rx()
2536 pkt_len, rx_status); in vortex_rx()
2581 int rx_status; in boomerang_rx() local
2587 while ((rx_status = le32_to_cpu(vp->rx_ring[entry].status)) & RxDComplete){ in boomerang_rx()
2590 if (rx_status & RxDError) { /* Error, update stats. */ in boomerang_rx()
2591 unsigned char rx_error = rx_status >> 16; in boomerang_rx()
2602 int pkt_len = rx_status & 0x1fff; in boomerang_rx()
2608 pkt_len, rx_status); in boomerang_rx()
2632 int csum_bits = rx_status & 0xee000000; in boomerang_rx()