Lines Matching refs:rx_head
758 struct rx_header rx_head;
762 read_block(ioaddr, 8, (unsigned char*)&rx_head, dev->if_port);
764 printk(KERN_DEBUG " rx_count %04x %04x %04x %04x..", rx_head.pad,
765 rx_head.rx_count, rx_head.rx_status, rx_head.cur_addr);
766 if ((rx_head.rx_status & 0x77) != 0x01) {
768 if (rx_head.rx_status & 0x0004) dev->stats.rx_frame_errors++;
769 else if (rx_head.rx_status & 0x0002) dev->stats.rx_crc_errors++;
772 dev->name, rx_head.rx_status);
773 if (rx_head.rx_status & 0x0020) {
777 } else if (rx_head.rx_status & 0x0050)
782 int pkt_len = (rx_head.rx_count & 0x7ff) - 4;