aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>2005-06-02 23:53:38 +0000
committeriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>2005-06-02 23:53:38 +0000
commit3cc33b87b6649497afdfa3cda429474dc685fdbb (patch)
tree105f854d7c805f2fa8eb5401f112a9fa77d7bd2f
parentb7a0fb87b9fd4ed50006c31e9aaf7a7bdff3d060 (diff)
downloadxen-3cc33b87b6649497afdfa3cda429474dc685fdbb.tar.gz
xen-3cc33b87b6649497afdfa3cda429474dc685fdbb.tar.bz2
xen-3cc33b87b6649497afdfa3cda429474dc685fdbb.zip
bitkeeper revision 1.1655 (429f9c02qVlZ13S-reG9GUvOJtT9tA)
Current -unstable doesn't build, it's missing one exec_domain -> vcpu cleanup. Signed-off-by: Chris Wright <chrisw@osdl.org> Signed-off-by: ian@xensource.com
-rw-r--r--linux-2.6.11-xen-sparse/arch/xen/kernel/evtchn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-2.6.11-xen-sparse/arch/xen/kernel/evtchn.c b/linux-2.6.11-xen-sparse/arch/xen/kernel/evtchn.c
index 74e5d63a96..c88b802268 100644
--- a/linux-2.6.11-xen-sparse/arch/xen/kernel/evtchn.c
+++ b/linux-2.6.11-xen-sparse/arch/xen/kernel/evtchn.c
@@ -215,7 +215,7 @@ int bind_ipi_on_cpu_to_irq(int cpu, int ipi)
if ( (evtchn = per_cpu(ipi_to_evtchn, cpu)[ipi]) == 0 )
{
op.cmd = EVTCHNOP_bind_ipi;
- op.u.bind_ipi.ipi_edom = cpu;
+ op.u.bind_ipi.ipi_vcpu = cpu;
if ( HYPERVISOR_event_channel_op(&op) != 0 )
panic("Failed to bind virtual IPI %d on cpu %d\n", ipi, cpu);
evtchn = op.u.bind_ipi.port;