diff --git a/index.html b/index.html index f0d2550..fb04191 100644 --- a/index.html +++ b/index.html @@ -18,7 +18,7 @@

The Linux Kernel Module Programming Guide

Peter Jay Salzman, Michael Burian, Ori Pomerantz, Bob Mottram, Jim Huang

-
December 9, 2022
+
December 11, 2022
@@ -4956,13 +4956,13 @@ naming for Bottom Halves) statistically book-keep

The way to implement this is to call request_irq() to get your interrupt handler called when the relevant IRQ is received. -

In practice IRQ handling can be a bit more complex. Hardware is often -designed in a way that chains two interrupt controllers, so that all the IRQs -from interrupt controller B are cascaded to a certain IRQ from interrupt -controller A. Of course, that requires that the kernel finds out which IRQ it -really was afterwards and that adds overhead. Other architectures offer some -special, very low overhead, so called "fast IRQ" or FIQs. To take advantage of -them requires handlers to be written in assembler, so they do not really +

In practice IRQ handling can be a bit more complex. Hardware is often designed +in a way that chains two interrupt controllers, so that all the IRQs from +interrupt controller B are cascaded to a certain IRQ from interrupt controller A. +Of course, that requires that the kernel finds out which IRQ it really was +afterwards and that adds overhead. Other architectures offer some special, +very low overhead, so called "fast IRQ" or FIQs. To take advantage of them +requires handlers to be written in assembly language, so they do not really fit into the kernel. They can be made to work similar to the others, but after that procedure, they are no longer any faster than "common" IRQs. SMP enabled kernels running on systems with more than one processor diff --git a/lkmpg-for-ht.html b/lkmpg-for-ht.html index f0d2550..fb04191 100644 --- a/lkmpg-for-ht.html +++ b/lkmpg-for-ht.html @@ -18,7 +18,7 @@

The Linux Kernel Module Programming Guide

Peter Jay Salzman, Michael Burian, Ori Pomerantz, Bob Mottram, Jim Huang

-
December 9, 2022
+
December 11, 2022
@@ -4956,13 +4956,13 @@ naming for Bottom Halves) statistically book-keep

The way to implement this is to call request_irq() to get your interrupt handler called when the relevant IRQ is received. -

In practice IRQ handling can be a bit more complex. Hardware is often -designed in a way that chains two interrupt controllers, so that all the IRQs -from interrupt controller B are cascaded to a certain IRQ from interrupt -controller A. Of course, that requires that the kernel finds out which IRQ it -really was afterwards and that adds overhead. Other architectures offer some -special, very low overhead, so called "fast IRQ" or FIQs. To take advantage of -them requires handlers to be written in assembler, so they do not really +

In practice IRQ handling can be a bit more complex. Hardware is often designed +in a way that chains two interrupt controllers, so that all the IRQs from +interrupt controller B are cascaded to a certain IRQ from interrupt controller A. +Of course, that requires that the kernel finds out which IRQ it really was +afterwards and that adds overhead. Other architectures offer some special, +very low overhead, so called "fast IRQ" or FIQs. To take advantage of them +requires handlers to be written in assembly language, so they do not really fit into the kernel. They can be made to work similar to the others, but after that procedure, they are no longer any faster than "common" IRQs. SMP enabled kernels running on systems with more than one processor