Lines Matching refs:status
141 . 2 for interrupt tracking, status flags
502 ** Pkt size for allocating is data length +6 (for additional status words,
537 word status;
539 status = inb( ioaddr + INTERRUPT );
540 if ( status & IM_ALLOC_INT ) {
618 /* send the packet length ( +6 for status, length and ctl byte )
619 and the status word ( set to zeros ) */
624 /* send the packet length ( +6 for status words, length, and ctl*/
783 On a fast machine, the status might change before the interrupt
1121 . o Read the status
1130 word status;
1147 /* First two words are status and packet_length */
1148 status = inw( ioaddr + DATA_1 );
1153 PRINTK2(("RCV: STATUS %4x LENGTH %4x\n", status, packet_length ));
1156 . status, length, and an extra word with an odd byte .
1160 if ( !(status & RS_ERRORS ) ){
1166 if ( status & RS_ODDFRAME )
1170 if ( status & RS_MULTICAST )
1220 if ( status & RS_ALGNERR ) dev->stats.rx_frame_errors++;
1221 if ( status & (RS_TOOSHORT | RS_TOOLONG ) )
1223 if ( status & RS_BADCRC) dev->stats.rx_crc_errors++;
1242 . read the status word
1317 byte status;
1344 /* read the status flag, and mask it */
1345 status = inb( ioaddr + INTERRUPT ) & mask;
1346 if (!status )
1352 ": Handling interrupt status %x\n", status));
1354 if (status & IM_RCV_INT) {
1359 } else if (status & IM_TX_INT ) {
1364 } else if (status & IM_TX_EMPTY_INT ) {
1384 } else if (status & IM_ALLOC_INT ) {
1399 } else if (status & IM_RX_OVRN_INT ) {
1403 } else if (status & IM_EPH_INT ) {
1405 } else if (status & IM_ERCV_INT ) {