* [PATCH] vmx-doirq-vector.patch
@ 2005-06-09 1:06 Arun Sharma
0 siblings, 0 replies; only message in thread
From: Arun Sharma @ 2005-06-09 1:06 UTC (permalink / raw)
To: Ian Pratt, Keir Fraser; +Cc: xen-devel
do_IRQ() expects a vector instead of an irq now due to a recent change.
With this patch, VMX domains can boot again.
Signed-off-by: Arun Sharma <arun.sharma@intel.com>
--- a/xen/arch/x86/vmx.c Wed Jun 8 23:08:01 2005
+++ b/xen/arch/x86/vmx.c Thu Jun 9 01:03:30 2005
@@ -1262,8 +1262,7 @@
if (vector == LOCAL_TIMER_VECTOR) {
smp_apic_timer_interrupt(®s);
} else {
- regs.entry_vector = (vector == FIRST_DEVICE_VECTOR?
- 0 : vector_irq[vector]);
+ regs.entry_vector = vector;
do_IRQ(®s);
}
break;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-06-09 1:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-09 1:06 [PATCH] vmx-doirq-vector.patch Arun Sharma
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.