fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / include / asm-x86_64 / mach-xen / asm / irq.h
1 #ifndef _ASM_IRQ_H
2 #define _ASM_IRQ_H
3
4 /*
5  *      linux/include/asm/irq.h
6  *
7  *      (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
8  *
9  *      IRQ/IPI changes taken from work by Thomas Radke
10  *      <tomsoft@informatik.tu-chemnitz.de>
11  */
12
13 #include <linux/sched.h>
14 /* include comes from machine specific directory */
15 #include "irq_vectors.h"
16 #include <asm/thread_info.h>
17
18 static __inline__ int irq_canonicalize(int irq)
19 {
20         return ((irq == 2) ? 9 : irq);
21 }
22
23 #define ARCH_HAS_NMI_WATCHDOG           /* See include/linux/nmi.h */
24
25 # define irq_ctx_init(cpu) do { } while (0)
26
27 #ifdef CONFIG_HOTPLUG_CPU
28 #include <linux/cpumask.h>
29 extern void fixup_irqs(cpumask_t map);
30 #endif
31
32 #define __ARCH_HAS_DO_SOFTIRQ 1
33
34 #endif /* _ASM_IRQ_H */