From: Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
To: "Hesse, Christian" <mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: Re: [PATCH] KVM: fix calculation of initial value of rdx register
Date: Thu, 09 Nov 2006 15:01:55 +0200 [thread overview]
Message-ID: <455326C3.90601@qumranet.com> (raw)
In-Reply-To: <200611091310.25066.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 898 bytes --]
Hesse, Christian wrote:
> On Wednesday 08 November 2006 09:28, Avi Kivity wrote:
>
>> Okay. Please try to apply the two patches I posted yesterday. I don't
>> see how they can help, but it's worth trying.
>>
>
> Ok, here is the log. This time the system did not freeze completely, I could
> still move the mouse cursor, grab the qemu window and move that around, too.
> I could not type anything, though I could press Alt+Ctrl+F1 and got a black
> screen and a not blinking (frozen) console cursor.
>
One core was killed, the surviving core was able to run X and service
some interrupts.
Can you try the attached patch (on top of the previous debug patch)? In
addition, please enable pae mode (CONFIG_HIGHMEM64G) to see if the cpu
has trouble switching from pae mode in the guest to non-pae mode in the
host.
--
error compiling committee.c: too many arguments to function
[-- Attachment #2: kvm-more-debug.patch --]
[-- Type: text/x-patch, Size: 776 bytes --]
Index: linux-2.6/drivers/kvm/debug.c
===================================================================
--- linux-2.6.orig/drivers/kvm/debug.c
+++ linux-2.6/drivers/kvm/debug.c
@@ -997,6 +997,12 @@ void vmcs_dump(struct kvm_vcpu *vcpu)
vcpu_printf(vcpu, "GUEST_GDTR_LIMIT 0x%x\n", vmcs_read32(GUEST_GDTR_LIMIT));
vcpu_printf(vcpu, "GUEST_IDTR_LIMIT 0x%x\n", vmcs_read32(GUEST_IDTR_LIMIT));
+
+ vcpu_printf(vcpu, "VM_EXIT_CONTROLS 0x%x\n", vmcs_read32(VM_EXIT_CONTROLS));
+ vcpu_printf(vcpu, "EXCEPTION_BITMAP 0x%x\n", vmcs_read32(EXCEPTION_BITMAP));
+ vcpu_printf(vcpu, "HOST_RIP 0x%lx\n", vmcs_readl(HOST_RIP));
+ vcpu_printf(vcpu, "HOST_RSP 0x%lx\n", vmcs_readl(HOST_RSP));
+
vcpu_printf(vcpu, "***********************************************************\n");
}
[-- Attachment #3: Type: text/plain, Size: 373 bytes --]
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
[-- Attachment #4: Type: text/plain, Size: 186 bytes --]
_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel
next prev parent reply other threads:[~2006-11-09 13:01 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-11-06 13:15 [PATCH] KVM: fix calculation of initial value of rdx register Avi Kivity
2006-11-06 18:47 ` Hesse, Christian
[not found] ` <200611061947.47165.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-07 8:14 ` Avi Kivity
[not found] ` <4550407F.6030007-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-07 11:55 ` Hesse, Christian
[not found] ` <200611071255.59831.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-07 12:31 ` Avi Kivity
[not found] ` <45507C84.70504-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-07 13:04 ` Hesse, Christian
[not found] ` <200611071404.38825.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-07 13:25 ` Avi Kivity
[not found] ` <4550893A.1000304-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-07 13:46 ` Hesse, Christian
[not found] ` <200611071446.17870.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-07 14:11 ` Avi Kivity
[not found] ` <4550941E.4070409-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-08 8:04 ` Hesse, Christian
[not found] ` <200611080904.27777.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-08 8:11 ` Avi Kivity
[not found] ` <4551914D.70303-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-08 8:24 ` Hesse, Christian
[not found] ` <200611080924.59607.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-08 8:28 ` Avi Kivity
[not found] ` <45519512.3050606-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-09 12:10 ` Hesse, Christian
[not found] ` <200611091310.25066.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-09 13:01 ` Avi Kivity [this message]
[not found] ` <455326C3.90601-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-09 13:29 ` Hesse, Christian
[not found] ` <200611091429.57097.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-09 14:03 ` Hesse, Christian
[not found] ` <200611091503.25231.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-09 14:27 ` Avi Kivity
2006-11-10 8:09 ` Hesse, Christian
[not found] ` <200611100909.32168.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-10 15:51 ` Avi Kivity
[not found] ` <45549FF0.8070207-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-14 10:41 ` Avi Kivity
[not found] ` <45599D57.2090001-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2006-11-14 10:55 ` Avi Kivity
2006-11-16 13:03 ` Hesse, Christian
[not found] ` <200611161403.13461.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-18 10:16 ` Hesse, Christian
[not found] ` <200611181116.07278.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2006-11-19 8:22 ` Avi Kivity
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=455326C3.90601@qumranet.com \
--to=avi-atkuwr5tajbwk0htik3j/w@public.gmane.org \
--cc=kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
--cc=mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox