From: Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
To: tadomeit <tadomeit-Crc3fnV8OO0Aey3BTtE3dg@public.gmane.org>
Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: Re: guest reboot hanging - kvm: unhandled wrmsr: 0xc0000083
Date: Tue, 31 Jul 2007 19:15:20 +0300 [thread overview]
Message-ID: <46AF6018.3060108@qumranet.com> (raw)
In-Reply-To: <46A9D46A.8050003-Crc3fnV8OO0Aey3BTtE3dg@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 560 bytes --]
tadomeit wrote:
> Hi,
>
> I've installed the latest version kvm-33 on my PC. All guests (tested
> with several knoppix version and SuSE 10.1 install dvd image) hanging on
> reboot. In the host syslog I found a lot of messages (>1000): "kernel:
> kvm: unhandled wrmsr: 0xc0000083"
>
> I've tested with the original kernel kvm modules and with the modules
> delivered with kvm-33, I tried the version kvm-32 - no success - every
> time the same behaviour!
>
>
Can you try the attached patch?
--
error compiling committee.c: too many arguments to function
[-- Attachment #2: i386-no-long-mode.patch --]
[-- Type: text/x-patch, Size: 1060 bytes --]
commit d9ff68d1414c64477a06bb9d35633f7c45d4942a
Author: Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
Date: Mon Jul 30 12:48:15 2007 +0300
kvm: qemu: disable long mode on 32-bit kernels
diff --git a/qemu/qemu-kvm.c b/qemu/qemu-kvm.c
index a19219c..4ba93d8 100644
--- a/qemu/qemu-kvm.c
+++ b/qemu/qemu-kvm.c
@@ -18,6 +18,7 @@ int kvm_allowed = KVM_ALLOWED_DEFAULT;
#include "qemu-kvm.h"
#include <kvmctl.h>
#include <pthread.h>
+#include <sys/utsname.h>
#define MSR_IA32_TSC 0x10
@@ -999,11 +1000,15 @@ static void do_cpuid_ent(struct kvm_cpuid_entry *e, uint32_t function,
e->edx = env->regs[R_EDX];
if (function == 0x80000001) {
uint32_t h_eax, h_edx;
+ struct utsname utsname;
+ int lm_capable_kernel;
host_cpuid(function, &h_eax, NULL, NULL, &h_edx);
+ uname(&utsname);
+ lm_capable_kernel = strcmp(utsname.machine, "x86_64") == 0;
// long mode
- if ((h_edx & 0x20000000) == 0)
+ if ((h_edx & 0x20000000) == 0 || !lm_capable_kernel)
e->edx &= ~0x20000000u;
// syscall
if ((h_edx & 0x00000800) == 0)
[-- Attachment #3: Type: text/plain, Size: 315 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- 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:[~2007-07-31 16:15 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-27 11:18 guest reboot hanging - kvm: unhandled wrmsr: 0xc0000083 tadomeit
[not found] ` <46A9D46A.8050003-Crc3fnV8OO0Aey3BTtE3dg@public.gmane.org>
2007-07-31 16:15 ` Avi Kivity [this message]
[not found] ` <46AF6018.3060108-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-07-31 20:34 ` tadomeit
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=46AF6018.3060108@qumranet.com \
--to=avi-atkuwr5tajbwk0htik3j/w@public.gmane.org \
--cc=kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
--cc=tadomeit-Crc3fnV8OO0Aey3BTtE3dg@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 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.