diff options
Diffstat (limited to 'include/linux/interrupt.h')
| -rw-r--r-- | include/linux/interrupt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 35e7df1e9f30..8e9e151f811e 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
| @@ -50,6 +50,9 @@ | |||
| 50 | * IRQF_IRQPOLL - Interrupt is used for polling (only the interrupt that is | 50 | * IRQF_IRQPOLL - Interrupt is used for polling (only the interrupt that is |
| 51 | * registered first in an shared interrupt is considered for | 51 | * registered first in an shared interrupt is considered for |
| 52 | * performance reasons) | 52 | * performance reasons) |
| 53 | * IRQF_ONESHOT - Interrupt is not reenabled after the hardirq handler finished. | ||
| 54 | * Used by threaded interrupts which need to keep the | ||
| 55 | * irq line disabled until the threaded handler has been run. | ||
| 53 | */ | 56 | */ |
| 54 | #define IRQF_DISABLED 0x00000020 | 57 | #define IRQF_DISABLED 0x00000020 |
| 55 | #define IRQF_SAMPLE_RANDOM 0x00000040 | 58 | #define IRQF_SAMPLE_RANDOM 0x00000040 |
| @@ -59,6 +62,7 @@ | |||
| 59 | #define IRQF_PERCPU 0x00000400 | 62 | #define IRQF_PERCPU 0x00000400 |
| 60 | #define IRQF_NOBALANCING 0x00000800 | 63 | #define IRQF_NOBALANCING 0x00000800 |
| 61 | #define IRQF_IRQPOLL 0x00001000 | 64 | #define IRQF_IRQPOLL 0x00001000 |
| 65 | #define IRQF_ONESHOT 0x00002000 | ||
| 62 | 66 | ||
| 63 | /* | 67 | /* |
| 64 | * Bits used by threaded handlers: | 68 | * Bits used by threaded handlers: |
| @@ -344,6 +348,7 @@ enum | |||
| 344 | NET_TX_SOFTIRQ, | 348 | NET_TX_SOFTIRQ, |
| 345 | NET_RX_SOFTIRQ, | 349 | NET_RX_SOFTIRQ, |
| 346 | BLOCK_SOFTIRQ, | 350 | BLOCK_SOFTIRQ, |
| 351 | BLOCK_IOPOLL_SOFTIRQ, | ||
| 347 | TASKLET_SOFTIRQ, | 352 | TASKLET_SOFTIRQ, |
| 348 | SCHED_SOFTIRQ, | 353 | SCHED_SOFTIRQ, |
| 349 | HRTIMER_SOFTIRQ, | 354 | HRTIMER_SOFTIRQ, |
