diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-26 05:21:16 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-26 05:21:16 +0200 |
commit | 9f4c7ac227423eb4a514ce0bbd3a884a26541e63 (patch) | |
tree | 8f2d8cdebfe87f11e0e7f14c789f807dbf0bec5d /include | |
parent | Merge master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6 (diff) | |
parent | [PATCH] x86-64: Only look at per_cpu data for online cpus. (diff) | |
download | linux-9f4c7ac227423eb4a514ce0bbd3a884a26541e63.tar.xz linux-9f4c7ac227423eb4a514ce0bbd3a884a26541e63.zip |
Merge branch 'for-linus' of git://one.firstfloor.org/home/andi/git/linux-2.6
* 'for-linus' of git://one.firstfloor.org/home/andi/git/linux-2.6:
[PATCH] x86-64: Only look at per_cpu data for online cpus.
[PATCH] x86-64: Simplify the vector allocator.
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86_64/hw_irq.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-x86_64/hw_irq.h b/include/asm-x86_64/hw_irq.h index 792dd52fcd70..179cce755aa7 100644 --- a/include/asm-x86_64/hw_irq.h +++ b/include/asm-x86_64/hw_irq.h @@ -76,6 +76,8 @@ #ifndef __ASSEMBLY__ typedef int vector_irq_t[NR_VECTORS]; DECLARE_PER_CPU(vector_irq_t, vector_irq); +extern void __setup_vector_irq(int cpu); +extern spinlock_t vector_lock; /* * Various low-level irq details needed by irq.c, process.c, |