Lines Matching refs:rx_head
760 struct rx_header rx_head;
764 read_block(ioaddr, 8, (unsigned char*)&rx_head, dev->if_port);
766 printk(KERN_DEBUG " rx_count %04x %04x %04x %04x..", rx_head.pad,
767 rx_head.rx_count, rx_head.rx_status, rx_head.cur_addr);
768 if ((rx_head.rx_status & 0x77) != 0x01) {
770 if (rx_head.rx_status & 0x0004) dev->stats.rx_frame_errors++;
771 else if (rx_head.rx_status & 0x0002) dev->stats.rx_crc_errors++;
774 dev->name, rx_head.rx_status);
775 if (rx_head.rx_status & 0x0020) {
779 } else if (rx_head.rx_status & 0x0050)
784 int pkt_len = (rx_head.rx_count & 0x7ff) - 4;