diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2006-06-27 05:53:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-27 20:32:37 -0400 |
commit | 19eadf98c8167eac843580683317b99572e2abf0 (patch) | |
tree | a5625f7834f0f06fc28a605c3cdb8debe2218498 /arch/i386/kernel/entry.S | |
parent | bd9e0b74f52dbac6241643fadca2393808b14c7a (diff) |
[PATCH] x86: increase interrupt vector range
Remove the limit of 256 interrupt vectors by changing the value stored in
orig_{e,r}ax to be the complemented interrupt vector. The orig_{e,r}ax
needs to be < 0 to allow the signal code to distinguish between return from
interrupt and return from syscall. With this change applied, NR_IRQS can
be > 256.
Xen extends the IRQ numbering space to include room for dynamically
allocated virtual interrupts (in the range 256-511), which requires a more
permissive interface to do_IRQ.
Signed-off-by: Ian Pratt <ian.pratt@xensource.com>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: "Protasevich, Natalie" <Natalie.Protasevich@UNISYS.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386/kernel/entry.S')
-rw-r--r-- | arch/i386/kernel/entry.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/kernel/entry.S b/arch/i386/kernel/entry.S index e6e4506e749a..8713e0248a0b 100644 --- a/arch/i386/kernel/entry.S +++ b/arch/i386/kernel/entry.S | |||
@@ -515,7 +515,7 @@ ENTRY(irq_entries_start) | |||
515 | .if vector | 515 | .if vector |
516 | CFI_ADJUST_CFA_OFFSET -4 | 516 | CFI_ADJUST_CFA_OFFSET -4 |
517 | .endif | 517 | .endif |
518 | 1: pushl $vector-256 | 518 | 1: pushl $~(vector) |
519 | CFI_ADJUST_CFA_OFFSET 4 | 519 | CFI_ADJUST_CFA_OFFSET 4 |
520 | jmp common_interrupt | 520 | jmp common_interrupt |
521 | .data | 521 | .data |
@@ -535,7 +535,7 @@ common_interrupt: | |||
535 | #define BUILD_INTERRUPT(name, nr) \ | 535 | #define BUILD_INTERRUPT(name, nr) \ |
536 | ENTRY(name) \ | 536 | ENTRY(name) \ |
537 | RING0_INT_FRAME; \ | 537 | RING0_INT_FRAME; \ |
538 | pushl $nr-256; \ | 538 | pushl $~(nr); \ |
539 | CFI_ADJUST_CFA_OFFSET 4; \ | 539 | CFI_ADJUST_CFA_OFFSET 4; \ |
540 | SAVE_ALL; \ | 540 | SAVE_ALL; \ |
541 | movl %esp,%eax; \ | 541 | movl %esp,%eax; \ |