[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [HVM][SVM] Revert changeset 11679:a949bd6ceb85
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID 34b2348dfe4b6245123e70b1a7401a3c508555b5 # Parent 9d0b22eb17582545b2973099015b305d05fc57b6 [HVM][SVM] Revert changeset 11679:a949bd6ceb85 Although in the correct spirit, it seems there is some other dependency in the code that assumes ExtInts are queued until thay can be immediately delivered (EFLAGS.IF==1). This patch therefore caused instability in Linux guests. Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> --- xen/arch/x86/hvm/svm/intr.c | 9 +++++++++ 1 files changed, 9 insertions(+) diff -r 9d0b22eb1758 -r 34b2348dfe4b xen/arch/x86/hvm/svm/intr.c --- a/xen/arch/x86/hvm/svm/intr.c Thu Oct 05 23:16:21 2006 +0100 +++ b/xen/arch/x86/hvm/svm/intr.c Fri Oct 06 08:09:52 2006 +0100 @@ -74,6 +74,7 @@ asmlinkage void svm_intr_assist(void) int intr_type = APIC_DM_EXTINT; int intr_vector = -1; int re_injecting = 0; + unsigned long rflags; ASSERT(vmcb); @@ -86,6 +87,14 @@ asmlinkage void svm_intr_assist(void) re_injecting = 1; } + /* Guest's interrputs masked? */ + rflags = vmcb->rflags; + if (irq_masked(rflags)) { + HVM_DBG_LOG(DBG_LEVEL_1, "Guest IRQs masked: rflags: %lx", rflags); + /* bail out, we won't be injecting an interrupt this time */ + return; + } + /* Previous interrupt still pending? */ if (vmcb->vintr.fields.irq) { // printk("Re-injecting IRQ from Vintr\n"); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |