Skip to content

Commit cb41da7

Browse files
authored
Merge pull request #250 from 0xff07/up-to-date-irq-flags
Replace SA_xxx IRQ flags with the IRQF_xxx ones
2 parents 470fbcd + b9a10fe commit cb41da7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

lkmpg.tex

+8-1
Original file line numberDiff line numberDiff line change
@@ -1879,7 +1879,14 @@ \subsection{Interrupt Handlers}
18791879
This function receives the IRQ number, the name of the function, flags, a name for \verb|/proc/interrupts| and a parameter to be passed to the interrupt handler.
18801880
Usually there is a certain number of IRQs available.
18811881
How many IRQs there are is hardware-dependent.
1882-
The flags can include \cpp|SA_SHIRQ| to indicate you are willing to share the IRQ with other interrupt handlers (usually because a number of hardware devices sit on the same IRQ) and \cpp|SA_INTERRUPT| to indicate this is a fast interrupt.
1882+
1883+
The flags can be used for specify behaviors of the IRQ.
1884+
For example, use \cpp|IRQF_SHARED| to indicate you are willing to share the IRQ with other interrupt handlers (usually because a number of hardware devices sit on the same IRQ); use the \cpp|IRQF_ONESHOT| to indicate that the IRQ is not reenabled after the handler finished.
1885+
It should be noted that in some materials, you may encouter another set of IRQ flags named with the \cpp|SA| prefix.
1886+
For example, the \cpp|SA_SHIRQ| and the \cpp|SA_INTERRUPT|.
1887+
Those are the the IRQ flags in the older kernels.
1888+
They have been removed completely.
1889+
Today only the \cpp|IRQF| flags are in use.
18831890
This function will only succeed if there is not already a handler on this IRQ, or if you are both willing to share.
18841891

18851892
\subsection{Detecting button presses}

0 commit comments

Comments
 (0)