diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2008-10-16 22:18:07 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2008-10-17 13:07:33 -0400 |
commit | 7477de989faffd4be4adfa3d3e1bf35bdf2e0f75 (patch) | |
tree | bd4c3b51538124f36b32a2146cbe2c2dd6c608f8 /arch/ia64/xen/xen_pv_ops.c | |
parent | 78c2ae4a0ebd1ab46160e163bf4ca1b7e9463301 (diff) |
ia64/pv_ops/xen: implement xen pv_irq_ops.
implement xen pv_irq_ops to paravirtualize irq handling
with xen event channel.
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Akio Takebe <takebe_akio@jp.fujitsu.com>
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/xen/xen_pv_ops.c')
-rw-r--r-- | arch/ia64/xen/xen_pv_ops.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/ia64/xen/xen_pv_ops.c b/arch/ia64/xen/xen_pv_ops.c index 41a6cbfab150..4fe4e621b7b6 100644 --- a/arch/ia64/xen/xen_pv_ops.c +++ b/arch/ia64/xen/xen_pv_ops.c | |||
@@ -29,6 +29,8 @@ | |||
29 | #include <asm/xen/xencomm.h> | 29 | #include <asm/xen/xencomm.h> |
30 | #include <asm/xen/privop.h> | 30 | #include <asm/xen/privop.h> |
31 | 31 | ||
32 | #include "irq_xen.h" | ||
33 | |||
32 | /*************************************************************************** | 34 | /*************************************************************************** |
33 | * general info | 35 | * general info |
34 | */ | 36 | */ |
@@ -354,6 +356,7 @@ xen_setup_pv_ops(void) | |||
354 | pv_init_ops = xen_init_ops; | 356 | pv_init_ops = xen_init_ops; |
355 | pv_cpu_ops = xen_cpu_ops; | 357 | pv_cpu_ops = xen_cpu_ops; |
356 | pv_iosapic_ops = xen_iosapic_ops; | 358 | pv_iosapic_ops = xen_iosapic_ops; |
359 | pv_irq_ops = xen_irq_ops; | ||
357 | 360 | ||
358 | paravirt_cpu_asm_init(&xen_cpu_asm_switch); | 361 | paravirt_cpu_asm_init(&xen_cpu_asm_switch); |
359 | } | 362 | } |