tag | line | file | source code |
status | 713 | drivers/block/floppy.c | unsigned char status; |
status | 718 | drivers/block/floppy.c | status = inb_p(FD_STATUS) &(STATUS_READY|STATUS_DIR|STATUS_DMA); |
status | 719 | drivers/block/floppy.c | if (!(status & STATUS_READY)) |
status | 721 | drivers/block/floppy.c | if (status == STATUS_READY |
status | 723 | drivers/block/floppy.c | || ((status == STATUS_READY|STATUS_DIR|STATUS_BUSY) &&force) |
status | 735 | drivers/block/floppy.c | fdc, status); |
status | 749 | drivers/block/floppy.c | int i = 0, counter, status; |
status | 754 | drivers/block/floppy.c | status = inb_p(FD_STATUS)& |
status | 756 | drivers/block/floppy.c | if (!(status & STATUS_READY)) |
status | 758 | drivers/block/floppy.c | if (status == STATUS_READY) |
status | 760 | drivers/block/floppy.c | if (status & STATUS_DMA ) |
status | 762 | drivers/block/floppy.c | if (status == (STATUS_DIR|STATUS_READY|STATUS_BUSY)) { |
status | 774 | drivers/block/floppy.c | status, fdc,i); |
status | 171 | drivers/block/hd.c | unsigned char status = inb_p(HD_STATUS); |
status | 173 | drivers/block/hd.c | if (status & BUSY_STAT) |
status | 175 | drivers/block/hd.c | if (status & WRERR_STAT) |
status | 177 | drivers/block/hd.c | if (!(status & READY_STAT)) |
status | 179 | drivers/block/hd.c | if (!(status & SEEK_STAT)) |
status | 187 | drivers/block/hd.c | unsigned char status; |
status | 190 | drivers/block/hd.c | status = inb_p(HD_STATUS); |
status | 191 | drivers/block/hd.c | } while ((status & BUSY_STAT) && --retries); |
status | 192 | drivers/block/hd.c | return status; |
status | 48 | drivers/char/lp.c | int status = 0, wait = 0; |
status | 52 | drivers/char/lp.c | status = LP_S(minor); |
status | 56 | drivers/char/lp.c | } while(!(status & LP_PBUSY) && count < LP_CHAR(minor)); |
status | 84 | drivers/char/lp.c | unsigned char status; |
status | 87 | drivers/char/lp.c | if (!((status = LP_S(minor)) & LP_PACK) || (status & LP_PBUSY) |
status | 88 | drivers/char/lp.c | || !((status = LP_S(minor)) & LP_PACK) || (status & LP_PBUSY) |
status | 89 | drivers/char/lp.c | || !((status = LP_S(minor)) & LP_PACK) || (status & LP_PBUSY)) { |
status | 131 | drivers/char/lp.c | unsigned char status; |
status | 143 | drivers/char/lp.c | if (!((status = LP_S(minor)) & LP_PERRORP)) { |
status | 146 | drivers/char/lp.c | if ((status & LP_POUTPA)) { |
status | 150 | drivers/char/lp.c | } else if (!(status & LP_PSELECD)) { |
status | 164 | drivers/char/lp.c | status = LP_S(minor); |
status | 165 | drivers/char/lp.c | if (!(status & LP_PACK) || (status & LP_PBUSY)) { |
status | 218 | drivers/char/lp.c | int status = LP_S(minor); |
status | 220 | drivers/char/lp.c | if (status & LP_POUTPA) { |
status | 228 | drivers/char/lp.c | if (!(status & LP_PSELECD)) { |
status | 237 | drivers/char/lp.c | if (!(status & LP_PERRORP)) { |
status | 247 | drivers/char/psaux.c | unsigned char status; |
status | 251 | drivers/char/psaux.c | status = inb_p(qp_status); |
status | 252 | drivers/char/psaux.c | outb_p(status & ~(QP_ENABLE|QP_INTS_ON), qp_status); |
status | 297 | drivers/char/psaux.c | unsigned char status; |
status | 310 | drivers/char/psaux.c | status = inb_p(qp_status); |
status | 311 | drivers/char/psaux.c | status |= (QP_ENABLE|QP_RESET); |
status | 312 | drivers/char/psaux.c | outb_p(status, qp_status); |
status | 313 | drivers/char/psaux.c | status &= ~(QP_RESET); |
status | 314 | drivers/char/psaux.c | outb_p(status, qp_status); |
status | 317 | drivers/char/psaux.c | status |= QP_INTS_ON; |
status | 318 | drivers/char/psaux.c | outb_p(status, qp_status); /* Enable interrupts */ |
status | 369 | drivers/char/serial.c | int *status) |
status | 376 | drivers/char/serial.c | if (*status & info->ignore_status_mask) |
status | 381 | drivers/char/serial.c | if (*status & info->read_status_mask) { |
status | 382 | drivers/char/serial.c | if (*status & (UART_LSR_BI)) { |
status | 386 | drivers/char/serial.c | } else if (*status & UART_LSR_PE) |
status | 388 | drivers/char/serial.c | else if (*status & UART_LSR_FE) |
status | 390 | drivers/char/serial.c | else if (*status & UART_LSR_OE) |
status | 397 | drivers/char/serial.c | } while ((*status = serial_inp(info, UART_LSR)) & UART_LSR_DR); |
status | 451 | drivers/char/serial.c | int status; |
status | 453 | drivers/char/serial.c | status = serial_in(info, UART_MSR); |
status | 455 | drivers/char/serial.c | if ((info->flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) { |
status | 458 | drivers/char/serial.c | (status & UART_MSR_DCD) ? "on" : "off"); |
status | 460 | drivers/char/serial.c | if (status & UART_MSR_DCD) |
status | 472 | drivers/char/serial.c | if (status & UART_MSR_CTS) { |
status | 485 | drivers/char/serial.c | if (!(status & UART_MSR_CTS)) { |
status | 505 | drivers/char/serial.c | int status; |
status | 529 | drivers/char/serial.c | status = serial_inp(info, UART_LSR); |
status | 530 | drivers/char/serial.c | if (status & UART_LSR_DR) |
status | 531 | drivers/char/serial.c | receive_chars(info, &status); |
status | 533 | drivers/char/serial.c | if (status & UART_LSR_THRE) |
status | 556 | drivers/char/serial.c | int status; |
status | 569 | drivers/char/serial.c | status = serial_inp(info, UART_LSR); |
status | 570 | drivers/char/serial.c | if (status & UART_LSR_DR) |
status | 571 | drivers/char/serial.c | receive_chars(info, &status); |
status | 573 | drivers/char/serial.c | if (status & UART_LSR_THRE) |
status | 592 | drivers/char/serial.c | int status; |
status | 610 | drivers/char/serial.c | status = serial_inp(info, UART_LSR); |
status | 611 | drivers/char/serial.c | if (status & UART_LSR_DR) { |
status | 612 | drivers/char/serial.c | receive_chars(info, &status); |
status | 616 | drivers/char/serial.c | if (status & UART_LSR_THRE) |
status | 649 | drivers/char/serial.c | int status; |
status | 662 | drivers/char/serial.c | status = serial_inp(info, UART_LSR); |
status | 663 | drivers/char/serial.c | if (status & UART_LSR_DR) |
status | 664 | drivers/char/serial.c | receive_chars(info, &status); |
status | 666 | drivers/char/serial.c | if (status & UART_LSR_THRE) |
status | 1482 | drivers/char/serial.c | unsigned char control, status; |
status | 1487 | drivers/char/serial.c | status = serial_in(info, UART_MSR); |
status | 1491 | drivers/char/serial.c | | ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) |
status | 1492 | drivers/char/serial.c | | ((status & UART_MSR_RI) ? TIOCM_RNG : 0) |
status | 1493 | drivers/char/serial.c | | ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) |
status | 1494 | drivers/char/serial.c | | ((status & UART_MSR_CTS) ? TIOCM_CTS : 0); |
status | 38 | drivers/net/3c505dta.h | status; |
status | 46 | drivers/net/3c505dta.h | status; |
status | 497 | drivers/net/3c507.c | int ioaddr, status, boguscount = 0; |
status | 511 | drivers/net/3c507.c | status = shmem[iSCB_STATUS>>1]; |
status | 514 | drivers/net/3c507.c | printk("%s: 3c507 interrupt, status %4.4x.\n", dev->name, status); |
status | 549 | drivers/net/3c507.c | if (status & 0x4000) { /* Packet received. */ |
status | 556 | drivers/net/3c507.c | ack_cmd = status & 0xf000; |
status | 558 | drivers/net/3c507.c | if ((status & 0x0700) != 0x0200 && dev->start) { |
status | 561 | drivers/net/3c507.c | dev->name, status); |
status | 568 | drivers/net/3c507.c | if ((status & 0x0070) != 0x0040 && dev->start) { |
status | 574 | drivers/net/3c507.c | dev->name, status); |
status | 375 | drivers/net/3c509.c | ushort status = inw(ioaddr + EL3_STATUS); |
status | 376 | drivers/net/3c509.c | if (status & 0x0001 /* IRQ line active, missed one. */ |
status | 379 | drivers/net/3c509.c | " Tx %2.2x Rx %4.4x.\n", dev->name, status, |
status | 432 | drivers/net/3c509.c | int ioaddr, status; |
status | 445 | drivers/net/3c509.c | status = inw(ioaddr + EL3_STATUS); |
status | 448 | drivers/net/3c509.c | printk("%s: interrupt, status %4.4x.\n", dev->name, status); |
status | 450 | drivers/net/3c509.c | while ((status = inw(ioaddr + EL3_STATUS)) & 0x01) { |
status | 452 | drivers/net/3c509.c | if (status & 0x10) |
status | 455 | drivers/net/3c509.c | if (status & 0x08) { |
status | 463 | drivers/net/3c509.c | if (status & 0x80) /* Statistics full. */ |
status | 468 | drivers/net/3c509.c | dev->name, status); |
status | 318 | drivers/net/8390.c | int status = inb(e8390_base + EN0_TSR); |
status | 362 | drivers/net/8390.c | if (status & ENTSR_COL) ei_local->stat.collisions++; |
status | 363 | drivers/net/8390.c | if (status & ENTSR_PTX) |
status | 367 | drivers/net/8390.c | if (status & ENTSR_ABT) ei_local->stat.tx_aborted_errors++; |
status | 368 | drivers/net/8390.c | if (status & ENTSR_CRS) ei_local->stat.tx_carrier_errors++; |
status | 369 | drivers/net/8390.c | if (status & ENTSR_FU) ei_local->stat.tx_fifo_errors++; |
status | 370 | drivers/net/8390.c | if (status & ENTSR_CDH) ei_local->stat.tx_heartbeat_errors++; |
status | 371 | drivers/net/8390.c | if (status & ENTSR_OWC) ei_local->stat.tx_window_errors++; |
status | 434 | drivers/net/8390.c | dev->name, rx_frame.count, rx_frame.status, |
status | 437 | drivers/net/8390.c | } else if ((rx_frame.status & 0x0F) == ENRSR_RXOK) { |
status | 457 | drivers/net/8390.c | int errs = rx_frame.status; |
status | 460 | drivers/net/8390.c | dev->name, rx_frame.status, rx_frame.next, |
status | 155 | drivers/net/8390.h | unsigned char status; /* status */ |
status | 87 | drivers/net/apricot.c | unsigned short status; |
status | 122 | drivers/net/apricot.c | unsigned short status; |
status | 230 | drivers/net/apricot.c | while (lp->scb.status, lp->scb.command) |
status | 234 | drivers/net/apricot.c | dev->name, lp->scb.status, lp->scb.command); |
status | 279 | drivers/net/apricot.c | dev->name, lp->scb.status, lp->scb.command); |
status | 297 | drivers/net/apricot.c | while (lp->scb.status, lp->scb.command) |
status | 301 | drivers/net/apricot.c | lp->scb.status, lp->scb.command); |
status | 414 | drivers/net/apricot.c | while (lp->scb.status, lp->scb.command) |
status | 418 | drivers/net/apricot.c | lp->scb.status, lp->scb.command); |
status | 432 | drivers/net/apricot.c | while (lp->scb.status, lp->scb.command) |
status | 436 | drivers/net/apricot.c | lp->scb.status, lp->scb.command); |
status | 449 | drivers/net/apricot.c | while ((lp->scb.status, lp->scb.command) || lp->scb.command) |
status | 453 | drivers/net/apricot.c | lp->scb.status, lp->scb.command); |
status | 475 | drivers/net/apricot.c | cmd->status = 0; |
status | 486 | drivers/net/apricot.c | while (lp->scb.status, lp->scb.command) |
status | 490 | drivers/net/apricot.c | lp->scb.status, lp->scb.command); |
status | 710 | drivers/net/apricot.c | unsigned short status, ack_cmd=0; |
status | 728 | drivers/net/apricot.c | while (lp->scb.status, lp->scb.command) |
status | 731 | drivers/net/apricot.c | printk("%s: i596 interrupt, timeout status %4.4x command %4.4x.\n", dev->name, lp->scb.status, lp->scb.command); |
status | 734 | drivers/net/apricot.c | status = lp->scb.status; |
status | 737 | drivers/net/apricot.c | printk("%s: i596 interrupt, status %4.4x.\n", dev->name, status); |
status | 739 | drivers/net/apricot.c | ack_cmd = status & 0xf000; |
status | 741 | drivers/net/apricot.c | if ((status & 0x8000) || (status & 0x2000)) |
status | 745 | drivers/net/apricot.c | if ((i596_debug > 4) && (status & 0x8000)) |
status | 747 | drivers/net/apricot.c | if ((i596_debug > 4) && (status & 0x2000)) |
status | 748 | drivers/net/apricot.c | printk("%s: i596 interrupt command unit inactive %x.\n", dev->name, status & 0x0700); |
status | 750 | drivers/net/apricot.c | while ((lp->cmd_head != (struct i596_cmd *) -1) && (lp->cmd_head->status & STAT_C)) |
status | 766 | drivers/net/apricot.c | if ((ptr->status) & STAT_OK) |
status | 773 | drivers/net/apricot.c | if ((ptr->status) & 0x0020) lp->stats.collisions++; |
status | 774 | drivers/net/apricot.c | if (!((ptr->status) & 0x0040)) lp->stats.tx_heartbeat_errors++; |
status | 775 | drivers/net/apricot.c | if ((ptr->status) & 0x0400) lp->stats.tx_carrier_errors++; |
status | 776 | drivers/net/apricot.c | if ((ptr->status) & 0x0800) lp->stats.collisions++; |
status | 777 | drivers/net/apricot.c | if ((ptr->status) & 0x1000) lp->stats.tx_aborted_errors++; |
status | 795 | drivers/net/apricot.c | unsigned long status = *((unsigned long *) (ptr + 1)); |
status | 797 | drivers/net/apricot.c | if (status & 0x8000) |
status | 804 | drivers/net/apricot.c | if (status & 0x4000) |
status | 806 | drivers/net/apricot.c | if (status & 0x2000) |
status | 808 | drivers/net/apricot.c | if (status & 0x1000) |
status | 811 | drivers/net/apricot.c | printk("%s: Time %ld.\n", dev->name, status & 0x07ff); |
status | 832 | drivers/net/apricot.c | if ((status & 0x1000) || (status & 0x4000)) |
status | 834 | drivers/net/apricot.c | if ((i596_debug > 4) && (status & 0x4000)) |
status | 836 | drivers/net/apricot.c | if ((i596_debug > 4) && (status & 0x1000)) |
status | 837 | drivers/net/apricot.c | printk("%s: i596 interrupt receive unit inactive %x.\n", dev->name, status & 0x0070); |
status | 850 | drivers/net/apricot.c | while (lp->scb.status, lp->scb.command) |
status | 853 | drivers/net/apricot.c | printk("%s: i596 interrupt, timeout status %4.4x command %4.4x.\n", dev->name, lp->scb.status, lp->scb.command); |
status | 880 | drivers/net/apricot.c | dev->name, lp->scb.status); |
status | 422 | drivers/net/at1700.c | int ioaddr, status; |
status | 432 | drivers/net/at1700.c | status = inw(ioaddr + TX_STATUS); |
status | 433 | drivers/net/at1700.c | outw(status, ioaddr + TX_STATUS); |
status | 436 | drivers/net/at1700.c | printk("%s: Interrupt with status %04x.\n", dev->name, status); |
status | 437 | drivers/net/at1700.c | if (status & 0xff00 |
status | 441 | drivers/net/at1700.c | if (status & 0x00ff) { |
status | 442 | drivers/net/at1700.c | if (status & 0x80) { |
status | 472 | drivers/net/at1700.c | ushort status = inw(ioaddr + DATAPORT); |
status | 476 | drivers/net/at1700.c | dev->name, inb(ioaddr + RX_MODE), status); |
status | 478 | drivers/net/at1700.c | if (status == 0) { |
status | 484 | drivers/net/at1700.c | if ((status & 0xF0) != 0x20) { /* There was an error. */ |
status | 486 | drivers/net/at1700.c | if (status & 0x08) lp->stats.rx_length_errors++; |
status | 487 | drivers/net/at1700.c | if (status & 0x04) lp->stats.rx_frame_errors++; |
status | 488 | drivers/net/at1700.c | if (status & 0x02) lp->stats.rx_crc_errors++; |
status | 489 | drivers/net/at1700.c | if (status & 0x01) lp->stats.rx_over_errors++; |
status | 180 | drivers/net/atp.c | int saved_ctrl_reg, status; |
status | 190 | drivers/net/atp.c | status = read_nibble(ioaddr, CMR1); |
status | 192 | drivers/net/atp.c | if ((status & 0x78) != 0x08) { |
status | 197 | drivers/net/atp.c | status = read_nibble(ioaddr, CMR2_h); |
status | 198 | drivers/net/atp.c | if ((status & 0x78) != 0x10) { |
status | 487 | drivers/net/atp.c | int ioaddr, status, boguscount = 20; |
status | 508 | drivers/net/atp.c | status = read_nibble(ioaddr, ISR); |
status | 509 | drivers/net/atp.c | if (net_debug > 5) printk("loop status %02x..", status); |
status | 511 | drivers/net/atp.c | if (status & (ISR_RxOK<<3)) { |
status | 534 | drivers/net/atp.c | } else if (status & ((ISR_TxErr + ISR_TxOK)<<3)) { |
status | 539 | drivers/net/atp.c | if (status & (ISR_TxErr<<3)) { |
status | 568 | drivers/net/atp.c | num_tx_since_rx, jiffies - dev->last_rx, status, |
status | 313 | drivers/net/de600.c | byte status; |
status | 316 | drivers/net/de600.c | status = inb(STATUS_PORT); |
status | 319 | drivers/net/de600.c | return status; |
status | 617 | drivers/net/de620.c | byte status; |
status | 637 | drivers/net/de620.c | header_buf.status, header_buf.Rx_NextPage, header_buf.Rx_ByteCount)); |
status | 362 | drivers/net/depca.c | int status = -ENODEV; |
status | 369 | drivers/net/depca.c | status = depca_probe1(dev, base_addr); |
status | 372 | drivers/net/depca.c | status = -ENXIO; |
status | 377 | drivers/net/depca.c | status = -EIO; |
status | 381 | drivers/net/depca.c | if (dev->priv) status=0; |
status | 386 | drivers/net/depca.c | if (status) dev->base_addr = base_addr; |
status | 388 | drivers/net/depca.c | return status; /* ENODEV would be more accurate. */ |
status | 395 | drivers/net/depca.c | int i,j, status=0; |
status | 623 | drivers/net/depca.c | status = -EAGAIN; |
status | 630 | drivers/net/depca.c | status = -ENXIO; |
status | 632 | drivers/net/depca.c | if (!status) { |
status | 652 | drivers/net/depca.c | status = -ENXIO; |
status | 655 | drivers/net/depca.c | return status; |
status | 788 | drivers/net/depca.c | int status = 0; |
status | 794 | drivers/net/depca.c | status = -1; |
status | 806 | drivers/net/depca.c | return status; |
status | 1000 | drivers/net/depca.c | int status = lp->rx_ring[entry].base >> 16 ; |
status | 1012 | drivers/net/depca.c | if (status == R_STP) { |
status | 1020 | drivers/net/depca.c | while ((status=(lp->rx_ring[(entry+1)&lp->rmask].base >> 16)) < 0); |
status | 1025 | drivers/net/depca.c | if (status & R_ERR) { /* There was an error. */ |
status | 1027 | drivers/net/depca.c | if (status & R_FRAM) lp->stats.rx_frame_errors++; |
status | 1028 | drivers/net/depca.c | if (status & R_OFLO) lp->stats.rx_over_errors++; |
status | 1029 | drivers/net/depca.c | if (status & R_CRC) lp->stats.rx_crc_errors++; |
status | 1030 | drivers/net/depca.c | if (status & R_BUFF) lp->stats.rx_fifo_errors++; |
status | 1057 | drivers/net/depca.c | if (chained && (status & R_ERR)) { /* next entry also bad */ |
status | 1091 | drivers/net/depca.c | int status = lp->tx_ring[dirty_tx].base >> 16; |
status | 1093 | drivers/net/depca.c | if (status < 0) { /* Packet not yet sent! */ |
status | 1097 | drivers/net/depca.c | if (status & T_ERR) { /* There was an major error, log it. */ |
status | 1106 | drivers/net/depca.c | } else if (status & (T_MORE | T_ONE)) { |
status | 1173 | drivers/net/depca.c | int i, status=0; |
status | 1189 | drivers/net/depca.c | status = -1; |
status | 1194 | drivers/net/depca.c | return status; |
status | 1295 | drivers/net/depca.c | int status; |
status | 1297 | drivers/net/depca.c | for (status = -ENODEV, port = &ports[0]; |
status | 1305 | drivers/net/depca.c | if ((status = depca_probe1(dev, ioaddr)) == 0) { |
status | 1322 | drivers/net/depca.c | int status; |
status | 1325 | drivers/net/depca.c | for (status = -ENODEV, i=1; i<MAX_EISA_SLOTS; i++, ioaddr+=0x1000) { |
status | 1331 | drivers/net/depca.c | if ((status = depca_probe1(dev, ioaddr)) == 0) { |
status | 1439 | drivers/net/depca.c | int i, j, nicsr, status = 0; |
status | 1462 | drivers/net/depca.c | for (i=0,j=0;devSig[i] != '\0' && !status;i+=2,j++) { |
status | 1468 | drivers/net/depca.c | status= -1; |
status | 1471 | drivers/net/depca.c | status= -1; |
status | 1486 | drivers/net/depca.c | if (!status) { |
status | 1497 | drivers/net/depca.c | status = -ENODEV; /* search failed */ |
status | 1501 | drivers/net/depca.c | return status; |
status | 134 | drivers/net/e2100.c | int i, status; |
status | 146 | drivers/net/e2100.c | status = inb(ioaddr); |
status | 147 | drivers/net/e2100.c | if (status != 0x21 && status != 0x23) |
status | 513 | drivers/net/eexpress.c | int ioaddr, status, boguscount = 0; |
status | 525 | drivers/net/eexpress.c | status = inw(ioaddr + SCB_STATUS); |
status | 528 | drivers/net/eexpress.c | printk("%s: EExp interrupt, status %4.4x.\n", dev->name, status); |
status | 564 | drivers/net/eexpress.c | if (status & 0x4000) { /* Packet received. */ |
status | 571 | drivers/net/eexpress.c | ack_cmd = status & 0xf000; |
status | 573 | drivers/net/eexpress.c | if ((status & 0x0700) != 0x0200 && dev->start) { |
status | 577 | drivers/net/eexpress.c | dev->name, status); |
status | 592 | drivers/net/eexpress.c | if ((status & 0x0070) != 0x0040 && dev->start) { |
status | 600 | drivers/net/eexpress.c | dev->name, status, lp->rx_head, lp->rx_tail); |
status | 733 | drivers/net/lance.c | int status = lp->tx_ring[entry].base; |
status | 735 | drivers/net/lance.c | if (status < 0) |
status | 740 | drivers/net/lance.c | if (status & 0x40000000) { /* There was a major error, log it. */ |
status | 749 | drivers/net/lance.c | if (status & 0x18000000) |
status | 808 | drivers/net/lance.c | int status = lp->rx_ring[entry].base >> 24; |
status | 810 | drivers/net/lance.c | if (status != 0x03) { /* There was an error. */ |
status | 815 | drivers/net/lance.c | if (status & 0x01) /* Only count a general error at the */ |
status | 817 | drivers/net/lance.c | if (status & 0x20) lp->stats.rx_frame_errors++; |
status | 818 | drivers/net/lance.c | if (status & 0x10) lp->stats.rx_over_errors++; |
status | 819 | drivers/net/lance.c | if (status & 0x08) lp->stats.rx_crc_errors++; |
status | 820 | drivers/net/lance.c | if (status & 0x04) lp->stats.rx_fifo_errors++; |
status | 543 | drivers/net/ni52.c | tdr_cmd->status = 0; |
status | 560 | drivers/net/ni52.c | result = tdr_cmd->status; |
status | 562 | drivers/net/ni52.c | p->scb->cmd = p->scb->status & STAT_MASK; |
status | 582 | drivers/net/ni52.c | p->scb->cmd = p->scb->status & STAT_MASK; |
status | 742 | drivers/net/ni52.c | while((stat=p->scb->status & STAT_MASK)) |
status | 748 | drivers/net/ni52.c | printk("ni52-%04x/%04x-",(int) stat,(int) p->scb->status); /* debug */ |
status | 761 | drivers/net/ni52.c | printk("%s: oops! CU has left active state. stat: %04x/%04x.\n",dev->name,(int) stat,(int) p->scb->status); |
status | 765 | drivers/net/ni52.c | printk("%s: rnr: %04x/%04x.\n",dev->name,(int) stat,(int) p->scb->status); |
status | 808 | drivers/net/ni52.c | int status; |
status | 814 | drivers/net/ni52.c | for(;(status = p->rfd_top->status) & STAT_COMPL;) |
status | 823 | drivers/net/ni52.c | printk("S:%04x/%x/%02x >",(int) rbd1->status,(int) rbd1->size>>12,(int)((unsigned long) rbd1 & 0xff)); |
status | 829 | drivers/net/ni52.c | printk("%04x/%x-",(int) rbd1->status>>12,(int) rbd1->size>>12); |
status | 837 | drivers/net/ni52.c | printk("S:%04x/%x/%02x >",(int) rfd1->status,(int) rfd1->last>>12,(int)((unsigned long) rfd1 & 0xff)); |
status | 843 | drivers/net/ni52.c | printk("%x/%x-",(int) rfd1->status>>12,(int) rfd1->last>>12); |
status | 849 | drivers/net/ni52.c | p->rfd_top->status = 0; |
status | 855 | drivers/net/ni52.c | if(status & RFD_ERRMASK) |
status | 856 | drivers/net/ni52.c | printk("%s: RFD-Error ... status: %04x.\n",dev->name,status); |
status | 858 | drivers/net/ni52.c | if(status & STAT_OK) |
status | 860 | drivers/net/ni52.c | for(totlen=0; !(rbd->status & RBD_LAST); rbd=(struct rbd_struct *) make32(rbd->next)) { |
status | 862 | drivers/net/ni52.c | rbd->status = 0; |
status | 864 | drivers/net/ni52.c | totlen += rbd->status & RBD_MASK; |
status | 865 | drivers/net/ni52.c | rbd->status = 0; |
status | 899 | drivers/net/ni52.c | printk("%s: oops! rfd-error-status: %04x\n",dev->name,status); |
status | 932 | drivers/net/ni52.c | int status; |
status | 940 | drivers/net/ni52.c | if( (status=p->xmit_cmds[p->xmit_last]->cmd_status) & STAT_OK) |
status | 943 | drivers/net/ni52.c | p->stats.collisions += (status & TCMD_MAXCOLLMASK); |
status | 950 | drivers/net/ni52.c | if(status & TCMD_LATECOLL) { |
status | 954 | drivers/net/ni52.c | else if(status & TCMD_NOCARRIER) { |
status | 958 | drivers/net/ni52.c | else if(status & TCMD_LOSTCTS) |
status | 960 | drivers/net/ni52.c | else if(status & TCMD_UNDERRUN) { |
status | 963 | drivers/net/ni52.c | else if(status & TCMD_MAXCOLL) { |
status | 991 | drivers/net/ni52.c | p->scb->cmd = p->scb->status & STAT_MASK; |
status | 1015 | drivers/net/ni52.c | printk("%s: xmitter timed out, try to restart! stat: %04x\n",dev->name,p->scb->status); |
status | 64 | drivers/net/ni52.h | unsigned short status; /* status word */ |
status | 120 | drivers/net/ni52.h | unsigned short status; /* status word */ |
status | 141 | drivers/net/ni52.h | unsigned short status; /* status word,number of used bytes in buff */ |
status | 261 | drivers/net/ni52.h | unsigned short status; |
status | 343 | drivers/net/ni65.c | tmdp->u.s.status = XMIT_START | XMIT_END; |
status | 351 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; |
status | 460 | drivers/net/ni65.c | tmdstat = tmdp->u.s.status; |
status | 506 | drivers/net/ni65.c | while(!( (rmdstat = rmdp->u.s.status) & RCV_OWN)) |
status | 516 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; /* change owner */ |
status | 525 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; |
status | 543 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; |
status | 552 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; |
status | 616 | drivers/net/ni65.c | tmdp->u.s.status = XMIT_OWN | XMIT_START | XMIT_END; |
status | 623 | drivers/net/ni65.c | if( !((p->tmdhead + p->tmdnum)->u.s.status & XMIT_OWN) ) |
status | 108 | drivers/net/ni65.h | volatile unsigned char status; |
status | 123 | drivers/net/ni65.h | volatile unsigned char status; |
status | 470 | drivers/net/plip.c | unsigned char status; |
status | 487 | drivers/net/plip.c | status = inb(PAR_STATUS(dev)); |
status | 488 | drivers/net/plip.c | if ((status & 0xf8) == 0x80) { |
status | 1052 | drivers/net/sk_g16.c | tmdp->u.s.status = TX_STP | TX_ENP; |
status | 1072 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; |
status | 1270 | drivers/net/sk_g16.c | tmdp->u.s.status = TX_OWN | TX_STP | TX_ENP; |
status | 1282 | drivers/net/sk_g16.c | if (! ((p->tmdhead + p->tmdnum)->u.s.status & TX_OWN) ) |
status | 1405 | drivers/net/sk_g16.c | tmdstat = tmdp->u.s.status & 0xff00; /* filter out status bits 15:08 */ |
status | 1524 | drivers/net/sk_g16.c | while (!( (rmdstat = rmdp->u.s.status) & RX_OWN)) |
status | 1554 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; /* Relinquish ownership to LANCE */ |
status | 1566 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; /* Relinquish ownership to LANCE */ |
status | 1585 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; /* Relinquish ownership to LANCE */ |
status | 1623 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; |
status | 140 | drivers/net/sk_g16.h | unsigned volatile char status; /* Status Bits */ |
status | 158 | drivers/net/sk_g16.h | unsigned volatile char status; /* Status Bits */ |
status | 312 | drivers/net/skeleton.c | int ioaddr, status, boguscount = 0; |
status | 322 | drivers/net/skeleton.c | status = inw(ioaddr + 0); |
status | 325 | drivers/net/skeleton.c | if (status /*& RX_INTR*/) { |
status | 329 | drivers/net/skeleton.c | if (status /*& TX_INTR*/) { |
status | 334 | drivers/net/skeleton.c | if (status /*& COUNTERS_INTR*/) { |
status | 352 | drivers/net/skeleton.c | int status = inw(ioaddr); |
status | 358 | drivers/net/skeleton.c | if (status & 0x40) { /* There was an error. */ |
status | 360 | drivers/net/skeleton.c | if (status & 0x20) lp->stats.rx_frame_errors++; |
status | 361 | drivers/net/skeleton.c | if (status & 0x10) lp->stats.rx_over_errors++; |
status | 362 | drivers/net/skeleton.c | if (status & 0x08) lp->stats.rx_crc_errors++; |
status | 363 | drivers/net/skeleton.c | if (status & 0x04) lp->stats.rx_fifo_errors++; |
status | 423 | drivers/net/znet.c | ushort status = inb(ioaddr); |
status | 433 | drivers/net/znet.c | dev->name, status, result, rx_ptr, running, boguscnt); |
status | 435 | drivers/net/znet.c | if ((status & 0x80) == 0) |
status | 438 | drivers/net/znet.c | if ((status & 0x0F) == 4) { /* Transmit done. */ |
status | 460 | drivers/net/znet.c | if ((status & 0x40) |
status | 461 | drivers/net/znet.c | || (status & 0x0f) == 11) { |
status | 497 | drivers/net/znet.c | int count, status; |
status | 510 | drivers/net/znet.c | status = ((hi_status & 0xff) << 8) + (lo_status & 0xff); |
status | 519 | drivers/net/znet.c | count, status); |
status | 520 | drivers/net/znet.c | cur_frame_end[-4] = status; |
status | 532 | drivers/net/znet.c | int status = this_rfp_ptr[-4]; |
status | 537 | drivers/net/znet.c | " next %04x.\n", next_frame_end_offset<<1, status, pkt_len, |
status | 540 | drivers/net/znet.c | if ( ! (status & 0x2000)) { /* There was an error. */ |
status | 542 | drivers/net/znet.c | if (status & 0x0800) lp->stats.rx_crc_errors++; |
status | 543 | drivers/net/znet.c | if (status & 0x0400) lp->stats.rx_frame_errors++; |
status | 544 | drivers/net/znet.c | if (status & 0x0200) lp->stats.rx_over_errors++; /* Wrong. */ |
status | 545 | drivers/net/znet.c | if (status & 0x0100) lp->stats.rx_fifo_errors++; |
status | 546 | drivers/net/znet.c | if (status & 0x0080) lp->stats.rx_length_errors++; |
status | 1216 | drivers/scsi/53c7,8xx.c | unsigned char status = 0xff; |
status | 1230 | drivers/scsi/53c7,8xx.c | dsa[9] = (unsigned long) &status; |
status | 1262 | drivers/scsi/53c7,8xx.c | print_status (status); |
status | 348 | drivers/scsi/NCR5380.c | unsigned char status, data, basr, mr, icr, i; |
status | 352 | drivers/scsi/NCR5380.c | status = NCR5380_read(STATUS_REG); |
status | 358 | drivers/scsi/NCR5380.c | if (status & signals[i].mask) |
status | 390 | drivers/scsi/NCR5380.c | unsigned char status; |
status | 394 | drivers/scsi/NCR5380.c | status = NCR5380_read(STATUS_REG); |
status | 395 | drivers/scsi/NCR5380.c | if (!(status & SR_REQ)) |
status | 400 | drivers/scsi/NCR5380.c | (phases[i].value != (status & PHASE_MASK)); ++i); |
status | 374 | drivers/scsi/aha1542.c | if(mb[mbi].status != 0) break; |
status | 379 | drivers/scsi/aha1542.c | if(mb[mbi].status == 0){ |
status | 391 | drivers/scsi/aha1542.c | mbistatus = mb[mbi].status; |
status | 392 | drivers/scsi/aha1542.c | mb[mbi].status = 0; |
status | 400 | drivers/scsi/aha1542.c | ccb[mbo].tarstat + ((int) ccb[mbo].hastat << 16), mb[mbi].status); |
status | 529 | drivers/scsi/aha1542.c | if(mb[mbo].status == 0 && HOSTDATA(SCpnt->host)->SCint[mbo] == NULL) |
status | 535 | drivers/scsi/aha1542.c | if(mb[mbo].status || HOSTDATA(SCpnt->host)->SCint[mbo]) |
status | 622 | drivers/scsi/aha1542.c | mb[mbo].status = 1; |
status | 663 | drivers/scsi/aha1542.c | mb[i].status = mb[AHA1542_MAILBOXES+i].status = 0; |
status | 958 | drivers/scsi/aha1542.c | HOSTDATA(shost)->mb[i].status = 1; /* Indicate ready to restart... */ |
status | 993 | drivers/scsi/aha1542.c | if(mb[mbi].status != 0) break; |
status | 999 | drivers/scsi/aha1542.c | if(mb[mbi].status) { |
status | 1015 | drivers/scsi/aha1542.c | if (HOSTDATA(SCpnt->host)->mb[i].status) { |
status | 1030 | drivers/scsi/aha1542.c | mb[mbo].status = 2; /* Abort command */ |
status | 1086 | drivers/scsi/aha1542.c | HOSTDATA(SCpnt->host)->mb[i].status = 0; |
status | 82 | drivers/scsi/aha1542.h | unchar status; /* Command/Status */ |
status | 59 | drivers/scsi/aha1740.c | int aha1740_makecode(unchar *sense, unchar *status) |
status | 79 | drivers/scsi/aha1740.c | status_word = * (struct statusword *) status; |
status | 81 | drivers/scsi/aha1740.c | printk("makecode from %x,%x,%x,%x %x,%x,%x,%x",status[0],status[1],status[2],status[3], |
status | 86 | drivers/scsi/aha1740.c | if ( (status[1]&0x18) || status_word.sc ) /*Additional info available*/ |
status | 89 | drivers/scsi/aha1740.c | switch ( status[2] ) |
status | 121 | drivers/scsi/aha1740.c | else if ( status[0]&0x60 ) |
status | 131 | drivers/scsi/aha1740.c | return status[3] | retval << 16; |
status | 209 | drivers/scsi/aha1740.c | errstatus = aha1740_makecode(ecbptr->sense,ecbptr->status); |
status | 347 | drivers/scsi/aha1740.c | ecb[ecbno].statusptr = (long) ecb[ecbno].status; |
status | 141 | drivers/scsi/aha1740.h | unchar status[MAX_STATUS]; /* Status area */ |
status | 496 | drivers/scsi/buslogic.c | if (mb[mbi].status != MBX_NOT_IN_USE) { |
status | 507 | drivers/scsi/buslogic.c | mbistatus = mb[mbi].status; |
status | 508 | drivers/scsi/buslogic.c | mb[mbi].status = MBX_NOT_IN_USE; |
status | 529 | drivers/scsi/buslogic.c | mb[mbi].status); |
status | 666 | drivers/scsi/buslogic.c | if (mb[mbo].status == MBX_NOT_IN_USE |
status | 674 | drivers/scsi/buslogic.c | if (mb[mbo].status != MBX_NOT_IN_USE |
status | 776 | drivers/scsi/buslogic.c | mb[mbo].status = MBX_ACTION_START; |
status | 822 | drivers/scsi/buslogic.c | mb[i].status = mb[BUSLOGIC_MAILBOXES + i].status = MBX_NOT_IN_USE; |
status | 1188 | drivers/scsi/buslogic.c | HOSTDATA(shpnt)->mb[i].status |
status | 1226 | drivers/scsi/buslogic.c | if (mb[mbi].status != MBX_NOT_IN_USE) |
status | 1234 | drivers/scsi/buslogic.c | if (mb[mbi].status != MBX_NOT_IN_USE) { |
status | 1254 | drivers/scsi/buslogic.c | if (HOSTDATA(scpnt->host)->mb[i].status != MBX_NOT_IN_USE) { |
status | 1274 | drivers/scsi/buslogic.c | mb[mbo].status = MBX_ACTION_ABORT; |
status | 1335 | drivers/scsi/buslogic.c | HOSTDATA(scpnt->host)->mb[i].status = MBX_NOT_IN_USE; |
status | 136 | drivers/scsi/buslogic.h | unsigned char status; /* Command/Status */ |
status | 118 | drivers/scsi/constants.c | void print_status (int status) { |
status | 119 | drivers/scsi/constants.c | status = (status >> 1) & 0xf; |
status | 121 | drivers/scsi/constants.c | printk("%s ",statuses[status]); |
status | 123 | drivers/scsi/constants.c | printk("0x%0x ", status); |
status | 766 | drivers/scsi/fdomain.c | int status = 0; |
status | 779 | drivers/scsi/fdomain.c | status = inb( TMC_Status_port ); /* Read adapter status */ |
status | 780 | drivers/scsi/fdomain.c | if (status & 0x02) /* Arbitration complete */ |
status | 788 | drivers/scsi/fdomain.c | printk( "Arbitration failed, status = %x\n", status ); |
status | 791 | drivers/scsi/fdomain.c | printk( "Future Domain: Arbitration failed, status = %x\n", status ); |
status | 799 | drivers/scsi/fdomain.c | int status; |
status | 815 | drivers/scsi/fdomain.c | status = inb( SCSI_Status_port ); /* Read adapter status */ |
status | 816 | drivers/scsi/fdomain.c | if (status & 1) { /* Busy asserted */ |
status | 853 | drivers/scsi/fdomain.c | int status; |
status | 884 | drivers/scsi/fdomain.c | status = inb( TMC_Status_port ); /* Read adapter status */ |
status | 885 | drivers/scsi/fdomain.c | if (!(status & 0x02)) { |
status | 906 | drivers/scsi/fdomain.c | status = inb( SCSI_Status_port ); |
status | 907 | drivers/scsi/fdomain.c | if (!(status & 0x01)) { |
status | 934 | drivers/scsi/fdomain.c | status = inb( SCSI_Status_port ); |
status | 936 | drivers/scsi/fdomain.c | if (status & 0x10) { /* REQ */ |
status | 938 | drivers/scsi/fdomain.c | switch (status & 0x0e) { |
status | 1039 | drivers/scsi/scsi.c | int status=0; |
status | 1086 | drivers/scsi/scsi.c | status = FINISHED; |
status | 1113 | drivers/scsi/scsi.c | status = REDO; |
status | 1123 | drivers/scsi/scsi.c | status = MAYREDO; |
status | 1131 | drivers/scsi/scsi.c | status = FINISHED; |
status | 1146 | drivers/scsi/scsi.c | status = FINISHED; |
status | 1155 | drivers/scsi/scsi.c | status = REDO; |
status | 1159 | drivers/scsi/scsi.c | status = MAYREDO; |
status | 1163 | drivers/scsi/scsi.c | status = FINISHED; |
status | 1168 | drivers/scsi/scsi.c | status = PENDING; |
status | 1180 | drivers/scsi/scsi.c | status = REDO; |
status | 1190 | drivers/scsi/scsi.c | status = MAYREDO; |
status | 1223 | drivers/scsi/scsi.c | status = REDO; |
status | 1228 | drivers/scsi/scsi.c | status = REDO; |
status | 1237 | drivers/scsi/scsi.c | status = MAYREDO; |
status | 1248 | drivers/scsi/scsi.c | status = REDO; |
status | 1257 | drivers/scsi/scsi.c | status = REDO; |
status | 1261 | drivers/scsi/scsi.c | status = MAYREDO; |
status | 1265 | drivers/scsi/scsi.c | status = FINISHED; |
status | 1270 | drivers/scsi/scsi.c | status = PENDING; |
status | 1274 | drivers/scsi/scsi.c | status=REDO; |
status | 1282 | drivers/scsi/scsi.c | switch (status) |
status | 1308 | drivers/scsi/scsi.c | status = FINISHED; |
status | 1331 | drivers/scsi/scsi.c | if (status == FINISHED) |
status | 123 | drivers/scsi/seagate.c | #define retcode(result) (((result) << 16) | (message << 8) | status) |
status | 600 | drivers/scsi/seagate.c | unsigned char status = 0; |
status | 1308 | drivers/scsi/seagate.c | status = DATA; |
status | 1466 | drivers/scsi/seagate.c | print_status(status); |
status | 1508 | drivers/scsi/seagate.c | if ((status == INTERMEDIATE_GOOD) || |
status | 1509 | drivers/scsi/seagate.c | (status == INTERMEDIATE_C_GOOD)) |
status | 1510 | drivers/scsi/seagate.c | status = GOOD; |
status | 668 | drivers/scsi/ultrastor.c | unsigned int status; |
status | 679 | drivers/scsi/ultrastor.c | status = DID_ABORT << 16; |
status | 753 | drivers/scsi/ultrastor.c | status = xchgb(0, &config.aborted[mscp_index]); |
status | 754 | drivers/scsi/ultrastor.c | if (status != 0xff) { |
status | 763 | drivers/scsi/ultrastor.c | status <<= 16; |
status | 770 | drivers/scsi/ultrastor.c | SCpnt->result = status; |
status | 774 | drivers/scsi/ultrastor.c | return status; |
status | 1015 | drivers/scsi/ultrastor.c | unsigned int status; |
status | 1093 | drivers/scsi/ultrastor.c | status = DID_OK << 16; |
status | 1099 | drivers/scsi/ultrastor.c | status = DID_ERROR << 16; |
status | 1102 | drivers/scsi/ultrastor.c | status = DID_ABORT << 16; |
status | 1105 | drivers/scsi/ultrastor.c | status = DID_TIME_OUT << 16; |
status | 1109 | drivers/scsi/ultrastor.c | SCtmp->result = status | mscp->target_status; |
status | 149 | drivers/scsi/wd7000.c | unchar status; |
status | 332 | drivers/scsi/wd7000.c | volatile unchar status; /* SCSI Return Status */ |
status | 381 | drivers/scsi/wd7000.c | volatile unchar status; /* returned (icmb) status */ |
status | 391 | drivers/scsi/wd7000.c | volatile unchar status; /* returned (icmb) status */ |
status | 401 | drivers/scsi/wd7000.c | volatile unchar status; /* returned (icmb) status */ |
status | 412 | drivers/scsi/wd7000.c | volatile unchar status; /* returned (icmb) status */ |
status | 423 | drivers/scsi/wd7000.c | volatile unchar status; /* returned (icmb) status */ |
status | 440 | drivers/scsi/wd7000.c | volatile unchar status; /* returned (icmb) status */ |
status | 448 | drivers/scsi/wd7000.c | volatile unchar status; /* returned (icmb) status */ |
status | 698 | drivers/scsi/wd7000.c | if (ogmbs[ogmb].status == 0) { |
status | 702 | drivers/scsi/wd7000.c | ogmbs[ogmb].status = 1; |
status | 858 | drivers/scsi/wd7000.c | icmb_status = icmbs[icmb].status; |
status | 868 | drivers/scsi/wd7000.c | icmbs[icmb].status = 0; |
status | 873 | drivers/scsi/wd7000.c | scsi_error = scb->status; |
status | 883 | drivers/scsi/wd7000.c | icb->status = icmb_status; |
status | 980 | drivers/scsi/wd7000.c | if (make_code(icb.vue|(icb.status << 8),0)) { |
status | 982 | drivers/scsi/wd7000.c | icb.vue, icb.status); |
status | 870 | drivers/sound/ad1848.c | unsigned char status; |
status | 881 | drivers/sound/ad1848.c | status = INB (io_Status (devc)); |
status | 883 | drivers/sound/ad1848.c | if (status & 0x01) |
status | 185 | drivers/sound/dev_table.h | int (*prefix_cmd) (int dev, unsigned char status); |
status | 1074 | drivers/sound/gus_wave.c | unsigned char status; |
status | 1079 | drivers/sound/gus_wave.c | status = gus_read8 (0x00); /* Get voice status */ |
status | 1082 | drivers/sound/gus_wave.c | if (status & 0x03) |
status | 1097 | drivers/sound/gus_wave.c | status = gus_read8 (0x0d); /* Ramping status */ |
status | 1100 | drivers/sound/gus_wave.c | if (status & 0x03) /* Sustain phase? */ |
status | 3202 | drivers/sound/gus_wave.c | unsigned char status; |
status | 3204 | drivers/sound/gus_wave.c | status = gus_look8 (0x41); /* Get DMA IRQ Status */ |
status | 3205 | drivers/sound/gus_wave.c | if (status & 0x40) /* DMA interrupt pending */ |
status | 3234 | drivers/sound/gus_wave.c | status = gus_look8 (0x49); /* |
status | 3237 | drivers/sound/gus_wave.c | if (status & 0x40) /* |
status | 70 | drivers/sound/midi_synth.c | prefix_cmd (int midi_dev, unsigned char status) |
status | 75 | drivers/sound/midi_synth.c | return midi_devs[midi_dev]->prefix_cmd (midi_dev, status); |
status | 718 | drivers/sound/mpu401.c | mpu401_prefix_cmd (int dev, unsigned char status) |
status | 725 | drivers/sound/mpu401.c | if (status < 0xf0) |
status | 733 | drivers/sound/mpu401.c | switch (status) |
status | 84 | drivers/sound/pas2_card.c | int status; |
status | 86 | drivers/sound/pas2_card.c | status = pas_read (INTERRUPT_STATUS); |
status | 87 | drivers/sound/pas2_card.c | pas_write (status, INTERRUPT_STATUS); /* |
status | 91 | drivers/sound/pas2_card.c | if (status & I_S_PCM_SAMPLE_BUFFER_IRQ) |
status | 94 | drivers/sound/pas2_card.c | pas_pcm_interrupt (status, 1); |
status | 96 | drivers/sound/pas2_card.c | status &= ~I_S_PCM_SAMPLE_BUFFER_IRQ; |
status | 98 | drivers/sound/pas2_card.c | if (status & I_S_MIDI_IRQ) |
status | 105 | drivers/sound/pas2_card.c | status &= ~I_S_MIDI_IRQ; |
status | 417 | drivers/sound/pas2_pcm.c | pas_pcm_interrupt (unsigned char status, int cause) |
status | 136 | drivers/sound/sb_dsp.c | int status; |
status | 168 | drivers/sound/sb_dsp.c | status = INB (DSP_DATA_AVAIL);/* |
status | 166 | drivers/sound/sound_calls.h | void pas_pcm_interrupt(unsigned char status, int cause); |
status | 208 | fs/nfs/proc.c | int status; |
status | 217 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 219 | fs/nfs/proc.c | return status; |
status | 222 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 223 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 232 | fs/nfs/proc.c | PRINTK("NFS reply getattr failed = %d\n", status); |
status | 235 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 242 | fs/nfs/proc.c | int status; |
status | 252 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 254 | fs/nfs/proc.c | return status; |
status | 257 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 258 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 267 | fs/nfs/proc.c | PRINTK("NFS reply setattr failed = %d\n", status); |
status | 270 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 277 | fs/nfs/proc.c | int status; |
status | 291 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 293 | fs/nfs/proc.c | return status; |
status | 296 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 297 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 307 | fs/nfs/proc.c | PRINTK("NFS reply lookup failed = %d\n", status); |
status | 310 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 317 | fs/nfs/proc.c | int status; |
status | 326 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 328 | fs/nfs/proc.c | return status; |
status | 331 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 332 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 335 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 345 | fs/nfs/proc.c | PRINTK("NFS reply readlink failed = %d\n", status); |
status | 348 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 355 | fs/nfs/proc.c | int status; |
status | 368 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 370 | fs/nfs/proc.c | return status; |
status | 373 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 374 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 378 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 388 | fs/nfs/proc.c | PRINTK("NFS reply read failed = %d\n", status); |
status | 391 | fs/nfs/proc.c | return (status == NFS_OK) ? len : -nfs_stat_to_errno(status); |
status | 398 | fs/nfs/proc.c | int status; |
status | 411 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 413 | fs/nfs/proc.c | return status; |
status | 416 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 417 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 426 | fs/nfs/proc.c | PRINTK("NFS reply write failed = %d\n", status); |
status | 429 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 437 | fs/nfs/proc.c | int status; |
status | 448 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 450 | fs/nfs/proc.c | return status; |
status | 453 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 454 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 464 | fs/nfs/proc.c | PRINTK("NFS reply create failed = %d\n", status); |
status | 467 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 473 | fs/nfs/proc.c | int status; |
status | 483 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 485 | fs/nfs/proc.c | return status; |
status | 488 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 489 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 497 | fs/nfs/proc.c | PRINTK("NFS reply remove failed = %d\n", status); |
status | 500 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 508 | fs/nfs/proc.c | int status; |
status | 520 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 522 | fs/nfs/proc.c | return status; |
status | 525 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 526 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 534 | fs/nfs/proc.c | PRINTK("NFS reply rename failed = %d\n", status); |
status | 537 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 544 | fs/nfs/proc.c | int status; |
status | 555 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 557 | fs/nfs/proc.c | return status; |
status | 560 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 561 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 569 | fs/nfs/proc.c | PRINTK("NFS reply link failed = %d\n", status); |
status | 572 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 579 | fs/nfs/proc.c | int status; |
status | 591 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 593 | fs/nfs/proc.c | return status; |
status | 596 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 597 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 605 | fs/nfs/proc.c | PRINTK("NFS reply symlink failed = %d\n", status); |
status | 608 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 616 | fs/nfs/proc.c | int status; |
status | 627 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 629 | fs/nfs/proc.c | return status; |
status | 632 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 633 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 643 | fs/nfs/proc.c | PRINTK("NFS reply mkdir failed = %d\n", status); |
status | 646 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 652 | fs/nfs/proc.c | int status; |
status | 662 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 664 | fs/nfs/proc.c | return status; |
status | 667 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 668 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 676 | fs/nfs/proc.c | PRINTK("NFS reply rmdir failed = %d\n", status); |
status | 679 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 686 | fs/nfs/proc.c | int status; |
status | 701 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 703 | fs/nfs/proc.c | return status; |
status | 706 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 707 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 714 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 730 | fs/nfs/proc.c | PRINTK("NFS reply readdir failed = %d\n", status); |
status | 733 | fs/nfs/proc.c | return (status == NFS_OK) ? i : -nfs_stat_to_errno(status); |
status | 740 | fs/nfs/proc.c | int status; |
status | 749 | fs/nfs/proc.c | if ((status = nfs_rpc_call(server, p0, p)) < 0) { |
status | 751 | fs/nfs/proc.c | return status; |
status | 754 | fs/nfs/proc.c | status = NFSERR_IO; |
status | 755 | fs/nfs/proc.c | else if ((status = ntohl(*p++)) == NFS_OK) { |
status | 764 | fs/nfs/proc.c | PRINTK("NFS reply statfs failed = %d\n", status); |
status | 767 | fs/nfs/proc.c | return -nfs_stat_to_errno(status); |
status | 83 | ibcs/binfmt_coff.c | int status; |
status | 87 | ibcs/binfmt_coff.c | status = 0; |
status | 94 | ibcs/binfmt_coff.c | status = verify_area (VERIFY_WRITE, |
status | 97 | ibcs/binfmt_coff.c | printk ("result from verify_area = %d\n", status); |
status | 100 | ibcs/binfmt_coff.c | if (status >= 0) |
status | 104 | ibcs/binfmt_coff.c | return status; |
status | 124 | ibcs/binfmt_coff.c | int status = 0; /* Result status register */ |
status | 143 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 156 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 172 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 182 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 195 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 202 | ibcs/binfmt_coff.c | if (status >= 0) { |
status | 210 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 218 | ibcs/binfmt_coff.c | status = read_exec (bprm->inode, /* INODE for file */ |
status | 224 | ibcs/binfmt_coff.c | if (status < 0) |
status | 225 | ibcs/binfmt_coff.c | printk ("read aout hdr, status = %d\n", status); |
status | 246 | ibcs/binfmt_coff.c | if (status >= 0) { |
status | 257 | ibcs/binfmt_coff.c | status = is_properly_aligned (sect_ptr); |
status | 263 | ibcs/binfmt_coff.c | status = is_properly_aligned (sect_ptr); |
status | 289 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 297 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 311 | ibcs/binfmt_coff.c | if (status >= 0) { |
status | 314 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 326 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 345 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 361 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 369 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 378 | ibcs/binfmt_coff.c | if (status >= 0) { |
status | 384 | ibcs/binfmt_coff.c | status = fd; |
status | 397 | ibcs/binfmt_coff.c | if (status >= 0) { |
status | 483 | ibcs/binfmt_coff.c | status = do_mmap (fp, |
status | 490 | ibcs/binfmt_coff.c | status = (status == (text_vaddr & PAGE_MASK)) ? 0 : -ENOEXEC; |
status | 494 | ibcs/binfmt_coff.c | if (status >= 0 && data_size != 0) { |
status | 501 | ibcs/binfmt_coff.c | status = do_mmap (fp, |
status | 508 | ibcs/binfmt_coff.c | status = (status == (data_vaddr & PAGE_MASK)) ? 0 : -ENOEXEC; |
status | 515 | ibcs/binfmt_coff.c | if (status >= 0 && bss_size != 0) { |
status | 525 | ibcs/binfmt_coff.c | status = clear_memory (bss_vaddr, bss_size); |
status | 530 | ibcs/binfmt_coff.c | if (status >= 0 && lib_ok && lib_count != 0) { |
status | 541 | ibcs/binfmt_coff.c | status = preload_library (bprm, sect_ptr, fp); |
status | 542 | ibcs/binfmt_coff.c | if (status != 0) |
status | 556 | ibcs/binfmt_coff.c | if (status < 0) |
status | 562 | ibcs/binfmt_coff.c | status = 0; /* We are committed. It can't fail */ |
status | 577 | ibcs/binfmt_coff.c | printk ("binfmt_coff: result = %d\n", status); |
status | 579 | ibcs/binfmt_coff.c | return (status); |
status | 591 | ibcs/binfmt_coff.c | int status; |
status | 607 | ibcs/binfmt_coff.c | status = sys_uselib (lib_name); |
status | 612 | ibcs/binfmt_coff.c | return (status); |
status | 624 | ibcs/binfmt_coff.c | int status = 0; /* Completion status */ |
status | 632 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 645 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 656 | ibcs/binfmt_coff.c | status = read_exec (exe_bprm->inode, /* INODE for file */ |
status | 664 | ibcs/binfmt_coff.c | if (status >= 0 && status != nbytes) { |
status | 668 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 675 | ibcs/binfmt_coff.c | while (status >= 0 && nbytes > COFF_SLIBSZ) { |
status | 684 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 693 | ibcs/binfmt_coff.c | status = preload_this_library (exe_bprm, |
status | 696 | ibcs/binfmt_coff.c | printk ("preload_this_library result = %d\n", status); |
status | 714 | ibcs/binfmt_coff.c | return (status); |
status | 740 | ibcs/binfmt_coff.c | int status; /* Status of the request */ |
status | 750 | ibcs/binfmt_coff.c | status = -ENOEXEC; |
status | 766 | ibcs/binfmt_coff.c | status = read_exec (bprm->inode, /* INODE for file */ |
status | 774 | ibcs/binfmt_coff.c | status = load_object (bprm, ®s, 0); |
status | 783 | ibcs/binfmt_coff.c | return (status); |
status | 281 | ibcs/binfmt_elf.c | int status; |
status | 286 | ibcs/binfmt_elf.c | status = 0; |
status | 83 | include/linux/timex.h | int status; /* clock command/status */ |
status | 347 | kernel/time.c | if (txc.status < TIME_OK || txc.status > TIME_BAD) |
status | 367 | kernel/time.c | time_status = txc.status; |
status | 416 | kernel/time.c | txc.status = time_status; |