From: Farkas Levente <lfarkas-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
To: Izik Eidus <izike-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
Cc: kvm-devel
<kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>,
Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
Subject: Re: [ANNOUNCE] kvm-52 release
Date: Mon, 12 Nov 2007 17:48:04 +0100 [thread overview]
Message-ID: <473883C4.8040405@bppiac.hu> (raw)
In-Reply-To: <1194884867.3161.12.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
Izik Eidus wrote:
> On Mon, 2007-11-12 at 17:07 +0100, Farkas Levente wrote:
>> Izik Eidus wrote:
>>> On Mon, 2007-11-12 at 16:29 +0100, Farkas Levente wrote:
>>>> Avi Kivity wrote:
>>>>> Small fixes and updates.
>>>>>
>>>>> Changes from kvm-51:
>>>>> - fix efer reload host crash on T2600 and similar processors
>>>>> - revert sleepy interrupt injection
>>>>> - fixes "Fault when IDT_Vectoring"
>>>>> - atomically inject real-mode interrupts
>>>>> - wbinvd exiting on newer Intel processors (Eddie Dong)
>>>>> - fixes real-time issues
>>>>> - fix call/jmp instruction emulation (Izik Eidus)
>>>>> - fixes Vista x64 installation
>>>>> - fix save/restore/migrate with multiple nics
>>>>> - fix build on i386 uniprocessor w/ no ioapic hosts
>>>>> - fix smp_call_function_single() emulation on older hosts
>>>>> - fixes smp guests not booting on RHEL 5 hosts
>>>>> - make qemu/kvm memory allocation match plain qemu more closely (Izik Eidus)
>>>>> - fixes issues with large memory guests
>>>>> - libkvm compile fixes (Carlo Marcelo Arenas Belon, Jerone Young)
>>>> still not working for us, there is even a small regression.
>>> wow, what host kernel are you using?
>> see bellow:-)
>> are you think i manually create the screenshots?:-)?
>>
>>>> with smp:
>>>> - centos 32bit guest hang during boot at different places (see screenshot).
>>> work for me (2.6.23.1)
>> there is no such kernel for redhat/centos! we use a clean upstream fully
>> updated centos (ie. the kernel actually 2.6.18-8.1.15:-)
>>
>
> ok this is hard to catch, i tried to use centos 5 kernel 2.6.18-8.el5
> and ran smp guest, (centos5 64 and winxp32) and it worked for me
> you have any idea what i can do to make my system look more like your?
> what could be diffrent?
first of all fully update your centos (a bit newer kernel), then i use
these packages:
http://www.lfarkas.org/linux/packages/centos/5/x86_64/
use libvirtd and virt-manager too and start the guests from there. and
start them manually paralell (i used to reboot the host when i update
kvm, the start virt-manager and start each guests). anyway may be a
newer processor generate the same result as ours.
or if you can send me any kind of debug kvm version i can run it which
can print any additional debug messages etc...
i can just repeat my setup:
- host:
- Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz
- Intel S3000AHV
- 8GB RAM
- CentOS-5
- kernel-2.6.18-8.1.15.el5 x86_64 64bit
- guest-1:
- CentOS-5
- kernel-2.6.18-8.1.15.el5 i386 32bit
- guest-2:
- CentOS-5
- kernel-2.6.18-8.1.15.el5 x86_64 64bit
packages on the host:
# rpm -qa|egrep "virt|vnc|kvm"|sort
gtk-vnc-0.2.0-4
gtk-vnc-python-0.2.0-4
kmod-kvm-52-1.2.6.18_8.1.15.el5
kvm-52-1
libvirt-0.3.3-2
libvirt-python-0.3.3-2
python-virtinst-0.300.1-3
virt-manager-0.5.2-2
virt-top-0.3.2.8-1
virt-viewer-0.0.2-2
vnc-4.1.2-9.el5
the two guest config in libvirtd are the following:
devel-i386.xml:
-------------------------------------------------------------
<domain type='kvm'>
<name>devel-i386</name>
<uuid>dee4ab98-363c-649f-4a02-fef25b17756b</uuid>
<memory>2097152</memory>
<currentMemory>2097152</currentMemory>
<vcpu>1</vcpu>
<os>
<type>hvm</type>
<boot dev='hd'/>
</os>
<features>
<acpi/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
<emulator>/usr/bin/qemu-kvm</emulator>
<disk type='block' device='disk'>
<source dev='/dev/VolGroup00/centos-i386-root'/>
<target dev='hda'/>
</disk>
<disk type='block' device='disk'>
<source dev='/dev/VolGroup00/centos-i386-swap'/>
<target dev='hdb'/>
</disk>
<disk type='block' device='disk'>
<source dev='/dev/md2'/>
<target dev='hdc'/>
</disk>
<!--
<disk type='block' device='cdrom'>
<source dev='/dev/hda'/>
<target dev='hdcd?'/>
<readonly/>
</disk>
-->
<interface type='bridge'>
<mac address='00:16:3e:58:66:7b'/>
<source bridge='eth0'/>
</interface>
<input type='mouse' bus='ps2'/>
<graphics type='vnc' port='-1' listen='127.0.0.1'/>
</devices>
</domain>
-------------------------------------------------------------
devel-x86-64.xml:
-------------------------------------------------------------
<domain type='kvm'>
<name>devel-x86-64</name>
<uuid>9436bef1-aef9-2f5c-21cf-123e300fcd27</uuid>
<memory>524288</memory>
<currentMemory>524288</currentMemory>
<vcpu>1</vcpu>
<os>
<type>hvm</type>
<boot dev='hd'/>
</os>
<features>
<acpi/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
<emulator>/usr/bin/qemu-kvm</emulator>
<disk type='block' device='disk'>
<source dev='/dev/VolGroup00/centos-x86_64-root'/>
<target dev='hda'/>
</disk>
<disk type='block' device='disk'>
<source dev='/dev/VolGroup00/centos-x86_64-swap'/>
<target dev='hdb'/>
</disk>
<interface type='bridge'>
<mac address='00:16:3e:2e:99:e2'/>
<source bridge='eth0'/>
</interface>
<input type='mouse' bus='ps2'/>
<graphics type='vnc' port='-1' listen='127.0.0.1'/>
</devices>
</domain>
-------------------------------------------------------------
--
Levente "Si vis pacem para bellum!"
-------------------------------------------------------------------------
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/
next prev parent reply other threads:[~2007-11-12 16:48 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-12 12:13 [ANNOUNCE] kvm-52 release Avi Kivity
[not found] ` <47384377.70004-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-12 15:29 ` Farkas Levente
2007-11-12 15:33 ` Alexey Eremenko
[not found] ` <64F9B87B6B770947A9F8391472E032160C95C5AB-yEcIvxbTEBqsx+V+t5oei8rau4O3wl8o3fe8/T/H7NteoWH0uzbU5w@public.gmane.org>
2007-11-12 15:48 ` Farkas Levente
[not found] ` <473875D6.50501-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
2007-11-12 15:56 ` Izik Eidus
[not found] ` <47387146.706-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
2007-11-12 15:46 ` Izik Eidus
[not found] ` <1194882388.3983.4.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2007-11-12 16:07 ` Farkas Levente
[not found] ` <47387A44.3090604-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
2007-11-12 16:27 ` Izik Eidus
[not found] ` <1194884867.3161.12.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2007-11-12 16:48 ` Farkas Levente [this message]
[not found] ` <473883C4.8040405-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
2007-11-12 17:09 ` david ahern
[not found] ` <473888D5.20603-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
2007-11-12 20:18 ` Farkas Levente
[not found] ` <4738B51C.1080606-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
2007-11-12 20:40 ` david ahern
[not found] ` <4738BA52.1010603-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
2007-11-12 21:05 ` Farkas Levente
2007-11-13 8:04 ` Avi Kivity
[not found] ` <47395AAA.1020803-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-13 8:53 ` Farkas Levente
[not found] ` <473965F5.7070105-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
2007-11-13 9:00 ` Avi Kivity
2007-11-13 14:29 ` david ahern
[not found] ` <4739B4CC.9070407-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
2007-11-14 13:48 ` Farkas Levente
2007-11-12 17:56 ` Avi Kivity
[not found] ` <473893E3.3030007-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-12 20:19 ` Farkas Levente
[not found] ` <4738B55A.2010702-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
2007-11-13 8:06 ` Avi Kivity
[not found] ` <47395AF8.7060507-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-13 9:07 ` Farkas Levente
[not found] ` <47396961.3060705-lWVWdrzSO4GHXe+LvDLADg@public.gmane.org>
2007-11-13 9:26 ` Laurent Vivier
2007-11-13 10:03 ` Farkas Levente
2007-11-13 9:32 ` Avi Kivity
[not found] ` <47396F39.8010803-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-11-13 10:05 ` Farkas Levente
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=473883C4.8040405@bppiac.hu \
--to=lfarkas-lwvwdrzso4ghxe+lvdladg@public.gmane.org \
--cc=avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org \
--cc=izike-atKUWr5tajBWk0Htik3J/w@public.gmane.org \
--cc=kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@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.