diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2008-10-17 11:18:07 +0900 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2008-10-17 10:07:33 -0700 |
commit | 7477de989faffd4be4adfa3d3e1bf35bdf2e0f75 (patch) | |
tree | bd4c3b51538124f36b32a2146cbe2c2dd6c608f8 /arch/ia64/xen/xen_pv_ops.c | |
parent | 78c2ae4a0ebd1ab46160e163bf4ca1b7e9463301 (diff) | |
download | talos-op-linux-7477de989faffd4be4adfa3d3e1bf35bdf2e0f75.tar.gz talos-op-linux-7477de989faffd4be4adfa3d3e1bf35bdf2e0f75.zip |
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 @@ #include <asm/xen/xencomm.h> #include <asm/xen/privop.h> +#include "irq_xen.h" + /*************************************************************************** * general info */ @@ -354,6 +356,7 @@ xen_setup_pv_ops(void) pv_init_ops = xen_init_ops; pv_cpu_ops = xen_cpu_ops; pv_iosapic_ops = xen_iosapic_ops; + pv_irq_ops = xen_irq_ops; paravirt_cpu_asm_init(&xen_cpu_asm_switch); } |