diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-22 13:11:24 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-22 13:11:24 -0400 |
| commit | 5b26776bd9253931097a85dcb1b9da1bac554c02 (patch) | |
| tree | 3dc8104e82cda8bbbfeefd8f5d21a1522c663a16 /include/linux | |
| parent | 356d1b52eb2445d94c6781f15346f00f4a675fda (diff) | |
| parent | 591d2fb02ea80472d846c0b8507007806bdd69cc (diff) | |
Merge branch 'irq-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'irq-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
genirq: Delegate irq affinity setting to the irq thread
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/interrupt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 2721f07e9354..88b056ac5629 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
| @@ -64,11 +64,13 @@ | |||
| 64 | * IRQTF_RUNTHREAD - signals that the interrupt handler thread should run | 64 | * IRQTF_RUNTHREAD - signals that the interrupt handler thread should run |
| 65 | * IRQTF_DIED - handler thread died | 65 | * IRQTF_DIED - handler thread died |
| 66 | * IRQTF_WARNED - warning "IRQ_WAKE_THREAD w/o thread_fn" has been printed | 66 | * IRQTF_WARNED - warning "IRQ_WAKE_THREAD w/o thread_fn" has been printed |
| 67 | * IRQTF_AFFINITY - irq thread is requested to adjust affinity | ||
| 67 | */ | 68 | */ |
| 68 | enum { | 69 | enum { |
| 69 | IRQTF_RUNTHREAD, | 70 | IRQTF_RUNTHREAD, |
| 70 | IRQTF_DIED, | 71 | IRQTF_DIED, |
| 71 | IRQTF_WARNED, | 72 | IRQTF_WARNED, |
| 73 | IRQTF_AFFINITY, | ||
| 72 | }; | 74 | }; |
| 73 | 75 | ||
| 74 | typedef irqreturn_t (*irq_handler_t)(int, void *); | 76 | typedef irqreturn_t (*irq_handler_t)(int, void *); |
