Lines Matching refs:interrupts
135 * processor case other than interrupts (get stats/set multicast list in
187 * interrupts on the APIC bus deadlocking the transmit path.
320 /* Mask interrupts from the ethercard.
403 /* Turn 8390 interrupts back on. */
417 * ei_interrupt - handle the interrupts from an 8390
421 * Handle the ether interface interrupts. We pull packets from
432 int interrupts, nr_serviced = 0;
446 netdev_err(dev, "Interrupted while interrupts are masked! isr=%#2x imr=%#2x\n",
459 while ((interrupts = ei_inb_p(e8390_base + EN0_ISR)) != 0 &&
463 /* rmk - acknowledge the interrupts */
464 ei_outb_p(interrupts, e8390_base + EN0_ISR);
465 interrupts = 0;
468 if (interrupts & ENISR_OVER)
470 else if (interrupts & (ENISR_RX+ENISR_RX_ERR)) {
475 if (interrupts & ENISR_TX)
477 else if (interrupts & ENISR_TX_ERR)
480 if (interrupts & ENISR_COUNTERS) {
487 /* Ignore any RDC interrupts that make it back to here. */
488 if (interrupts & ENISR_RDC)
494 if (interrupts && (netif_msg_intr(ei_local))) {
498 if (interrupts != 0xFF)
500 interrupts);
503 netdev_warn(dev, "unknown interrupt %#2x\n", interrupts);
785 * Called with lock held. Don't call this with the interrupts off or your
1041 /* Clear the pending interrupts and mask. */