aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/hardirq.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-06-08 14:05:21 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-06-08 14:05:21 +0000
commit2c4cc07fe703e6383dca60ab115d808899e63136 (patch)
treea16c81069e2698c206df375e6941ce53f219c290 /xen/include/asm-x86/hardirq.h
parent44eab34cc4a7b5e7de50697139255e8587101b32 (diff)
downloadxen-2c4cc07fe703e6383dca60ab115d808899e63136.tar.gz
xen-2c4cc07fe703e6383dca60ab115d808899e63136.tar.bz2
xen-2c4cc07fe703e6383dca60ab115d808899e63136.zip
bitkeeper revision 1.1691.1.8 (42a6fb21d3oJwpLmOxa2jKHRJ-8fJg)
First phase of removing IRQ numbers from Xen (transitioning to IRQ addressing by 'legacy ISA IRQ', 'interrupt vector', and 'I/O APIC address + pin' as appropriate). Overall plan is to move I/O APIC parsing and setup out of Xen (so we start DOM0 in virtual wire mode). Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/asm-x86/hardirq.h')
-rw-r--r--xen/include/asm-x86/hardirq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/include/asm-x86/hardirq.h b/xen/include/asm-x86/hardirq.h
index 576efd3c7c..04fa38b4be 100644
--- a/xen/include/asm-x86/hardirq.h
+++ b/xen/include/asm-x86/hardirq.h
@@ -15,7 +15,7 @@ typedef struct {
#define in_irq() (local_irq_count(smp_processor_id()) != 0)
-#define irq_enter(cpu, irq) (local_irq_count(cpu)++)
-#define irq_exit(cpu, irq) (local_irq_count(cpu)--)
+#define irq_enter(cpu) (local_irq_count(cpu)++)
+#define irq_exit(cpu) (local_irq_count(cpu)--)
#endif /* __ASM_HARDIRQ_H */