diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 14:07:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 14:07:52 -0700 |
commit | c61b79b6ef266890954213a701d8f6021d8c1289 (patch) | |
tree | 9b000a7dae5a782a0d667137ab43e4f1bea70d58 /include/linux/sched.h | |
parent | 2b2ec7554cf7ec5e4412f89a5af6abe8ce950700 (diff) | |
parent | 9efe21cb82b5dbe3b0b2ae4de4eccc64ecb94e95 (diff) | |
download | blackbird-op-linux-c61b79b6ef266890954213a701d8f6021d8c1289.tar.gz blackbird-op-linux-c61b79b6ef266890954213a701d8f6021d8c1289.zip |
Merge branch 'irq/threaded' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'irq/threaded' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
genirq: fix devres.o build for GENERIC_HARDIRQS=n
genirq: provide old request_irq() for CONFIG_GENERIC_HARDIRQ=n
genirq: threaded irq handlers review fixups
genirq: add support for threaded interrupts to devres
genirq: add threaded interrupt handler support
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index b94f3541f67b..c96140210d1c 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1294,6 +1294,11 @@ struct task_struct { /* Protection of (de-)allocation: mm, files, fs, tty, keyrings */ spinlock_t alloc_lock; +#ifdef CONFIG_GENERIC_HARDIRQS + /* IRQ handler threads */ + struct irqaction *irqaction; +#endif + /* Protection of the PI data structures: */ spinlock_t pi_lock; |