Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Interrupt coalescing
Technique in which events which would normally trigger a hardware interrupt are held back

Interrupt coalescing, also known as interrupt moderation, is a technique in which events which would normally trigger a hardware interrupt are held back, either until a certain amount of work is pending, or a timeout timer triggers. Used correctly, this technique can reduce interrupt load by up to an order of magnitude, while only incurring relatively small latency penalties. Interrupt coalescing is typically combined with either a hardware FIFO queue or direct memory access, to allow for continued data throughput while interrupts are being held back.

Interrupt coalescing is a common feature of modern network cards, but the technique dates back to early computer UARTs such as the 16550 UART chip used in the IBM PC's serial interface, at a time when even servicing the interrupt rates required by the low data rate serial data streams of the day was taxing for contemporary CPUs.

Interrupt coalescing can also be implemented without support in hardware, by disabling interrupts in the interrupt controller and using timer-based polling.

We don't have any images related to Interrupt coalescing yet.
We don't have any YouTube videos related to Interrupt coalescing yet.
We don't have any PDF documents related to Interrupt coalescing yet.
We don't have any Books related to Interrupt coalescing yet.
We don't have any archived web articles related to Interrupt coalescing yet.

See also

References

  1. "Interrupt Moderation (Windows Drivers)". Microsoft. Retrieved 2012-06-13. http://msdn.microsoft.com/en-us/library/windows/hardware/ff556017%28v=vs.85%29.aspx

  2. Jonathan Corbet (2006-12-18). "Reworking NAPI". LWN.net. Retrieved 2011-03-06. https://lwn.net/Articles/214457/