[ kvm-Bugs-2490866 ] repeatable corruption with qcow2 on kvm-79

2009-01-13 Thread SourceForge.net
Bugs item #2490866, was opened at 2009-01-06 23:10 Message generated for change (Comment added) made by thekozmo You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2490866group_id=180599 Please note that this message will contain a full copy of the comment

Re: [Qemu-devel] v2: KVM: support for 'count' in CPUID functions 4, 0xb and 0xd.

2009-01-13 Thread Alexander Graf
On 13.01.2009, at 08:09, Amit Shah wrote: These two patches were sent separately earlier. There are a couple of small changes in this version, including removal of a debug message that was left behind. Are you sure this actually implements the CPUID 4 leaf? I bet it simply submits

Re: [Qemu-devel] v2: KVM: support for 'count' in CPUID functions 4, 0xb and 0xd.

2009-01-13 Thread Amit Shah
On Tue, Jan 13, 2009 at 09:25:32AM +0100, Alexander Graf wrote: On 13.01.2009, at 08:09, Amit Shah wrote: These two patches were sent separately earlier. There are a couple of small changes in this version, including removal of a debug message that was left behind. Are you sure this

Re: XP guests sluggish after around 1 week of uptime

2009-01-13 Thread Avi Kivity
Please keep the cc list when replying (use reply-all). Jay wrote: Avi Kivity avi at redhat.com writes: How much memory do you have on the host? Is the host swapping? Can you post 'vmstat 1' output while Windows is opening the start menu? I have 8GB RAM on the host, and i've run

Re: Counting VCPU instructions

2009-01-13 Thread Avi Kivity
Abhishek Saksena wrote: Hi guys, Is ther a way to count how many instruction VCPU (KVM) executed? Say between between two IO/mmio operations. Is there any KVM API for this? While it's possible in theory using the hardware performance counters, no one has implemented this. Other thing

[ kvm-Bugs-2504082 ] Freeze windows

2009-01-13 Thread SourceForge.net
Bugs item #2504082, was opened at 2009-01-13 10:36 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2504082group_id=180599 Please note that this message will contain a full copy of

Re: [PATCH] KVM: x86: Store multiple cpuid entries for a single function

2009-01-13 Thread Amit Shah
On Tue, Jan 13, 2009 at 11:27:07AM +0200, Avi Kivity wrote: Amit Shah wrote: CPUID functions 4, 0xb and 0xd behave differently for different values of ECX. Store these values if userspace passes them. Userspace has no way of knowing whether the kernel contains this fix or not. Use the

Re: [PATCH] KVM: x86: Store multiple cpuid entries for a single function

2009-01-13 Thread Avi Kivity
Amit Shah wrote: Use the SET_CPUID2 interface instead. OK; So first attempt to use the SET_CPUID2 interface. If that fails (new userspace on older kernel), what should we do? SET_CPUID2 was introduced on 2.6.25; that is now the minimum requirement for qemu and kvm-userspace anyway.

Re: [PATCH] KVM: x86: Store multiple cpuid entries for a single function

2009-01-13 Thread Amit Shah
On Tue, Jan 13, 2009 at 11:45:55AM +0200, Avi Kivity wrote: Amit Shah wrote: Use the SET_CPUID2 interface instead. OK; So first attempt to use the SET_CPUID2 interface. If that fails (new userspace on older kernel), what should we do? SET_CPUID2 was introduced on 2.6.25; that is

[PATCH 4/7] KVM: Using ioapic_irqchip() macro for kvm_set_irq

2009-01-13 Thread Sheng Yang
Signed-off-by: Sheng Yang sh...@linux.intel.com --- virt/kvm/irq_comm.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/virt/kvm/irq_comm.c b/virt/kvm/irq_comm.c index 8f49113..0c3266a 100644 --- a/virt/kvm/irq_comm.c +++ b/virt/kvm/irq_comm.c @@ -39,7 +39,7 @@ void

[PATCH 6/7] KVM: Split IOAPIC structure

2009-01-13 Thread Sheng Yang
Prepared for reuse ioapic_redir_entry for MSI. Signed-off-by: Sheng Yang sh...@linux.intel.com --- include/linux/kvm_types.h | 17 + virt/kvm/ioapic.c |6 +++--- virt/kvm/ioapic.h | 17 + 3 files changed, 21 insertions(+), 19 deletions(-)

[PATCH 0/7][v6] GSI route layer for MSI/MSI-X

2009-01-13 Thread Sheng Yang
Update from v5: Addressed Marcelo and Avi's comments, also change ioctl back to add/delete style one. -- regards Yang, Sheng -- To unsubscribe from this list: send the line unsubscribe kvm in the body of a message to majord...@vger.kernel.org More majordomo info at

[PATCH 2/7] KVM: Using gsi route for MSI device assignment

2009-01-13 Thread Sheng Yang
Convert MSI userspace interface to support gsi_msg mapping(and nobody should be the user of the old interface...). Signed-off-by: Sheng Yang sh...@linux.intel.com --- include/linux/kvm_host.h |1 - virt/kvm/kvm_main.c | 79 ++ 2 files

[PATCH 3/7] KVM: Improve MSI dispatch function

2009-01-13 Thread Sheng Yang
Prepare to merge with kvm_set_irq(). Signed-off-by: Sheng Yang sh...@linux.intel.com --- virt/kvm/kvm_main.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index f3d5958..b0b97ba 100644 --- a/virt/kvm/kvm_main.c +++

[PATCH 7/7] KVM: Unified the delivery of IOAPIC and MSI

2009-01-13 Thread Sheng Yang
Signed-off-by: Sheng Yang sh...@linux.intel.com --- include/linux/kvm_host.h |3 ++ virt/kvm/ioapic.c| 84 virt/kvm/irq_comm.c | 87 -- 3 files changed, 87 insertions(+), 87 deletions(-)

[PATCH 1/7] KVM: Add a route layer to convert MSI message to GSI

2009-01-13 Thread Sheng Yang
Avi's purpose, to use single kvm_set_irq() to deal with all interrupt, including MSI. So here is it. struct gsi_route_entry is a mapping from a special gsi(with KVM_GSI_MSG_ENTRY_MASK) to MSI/MSI-X message address/data. And the struct can also be extended for other purpose. Now we support up to

[PATCH 5/7] KVM: Merge MSI handling to kvm_set_irq

2009-01-13 Thread Sheng Yang
Using kvm_set_irq to handle all interrupt injection. Signed-off-by: Sheng Yang sh...@linux.intel.com --- include/linux/kvm_host.h |2 +- virt/kvm/irq_comm.c | 79 +++-- virt/kvm/kvm_main.c | 78

[ kvm-Bugs-2490866 ] repeatable corruption with qcow2 on kvm-79

2009-01-13 Thread SourceForge.net
Bugs item #2490866, was opened at 2009-01-06 22:10 Message generated for change (Comment added) made by ldvornik You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2490866group_id=180599 Please note that this message will contain a full copy of the comment

[PATCH] KVM: x86: Fix typos and whitespace errors

2009-01-13 Thread Amit Shah
Some typos, comments, whitespace errors corrected in the cpuid code Signed-off-by: Amit Shah amit.s...@redhat.com --- arch/x86/include/asm/kvm.h |6 ++-- arch/x86/kvm/x86.c | 45 +-- 2 files changed, 25 insertions(+), 26 deletions(-) diff

[PATCH 1/2] kvm: libkvm: Add a wrapper for an ioctl for the KVM_SET_CPUID2 interface

2009-01-13 Thread Amit Shah
kvm_set_cpuid2() builds on top of kvm_set_cpuid() and correctly populates cpuid functions that have sub-leaves. Signed-off-by: Amit Shah amit.s...@redhat.com --- libkvm/libkvm-x86.c | 18 ++ libkvm/libkvm.h | 16 2 files changed, 34 insertions(+), 0

[PATCH 2/2] KVM: userspace: Fetch sub-leaf cpuid values for functions 4, 0xb, 0xd.

2009-01-13 Thread Amit Shah
CPUID functions 4, 0xb and 0xd have sub-leaf values which depend on the input value of ECX. Fetch these cpuid values and pass them on to the kernel. We also switch to the kvm_set_cpuid2() ioctl for this; kvm_set_cpuid() can't handle the extra parameters we need to support sub-leaves.

Re: [PATCH] KVM: x86: Fix typos and whitespace errors

2009-01-13 Thread Amit Shah
On Tue, Jan 13, 2009 at 10:47:52AM +, Amit Shah wrote: Some typos, comments, whitespace errors corrected in the cpuid code Signed-off-by: Amit Shah amit.s...@redhat.com --- arch/x86/include/asm/kvm.h |6 ++-- arch/x86/kvm/x86.c | 45

Re: [Qemu-devel] v2: KVM: support for 'count' in CPUID functions 4, 0xb and 0xd.

2009-01-13 Thread Amit Shah
On Tue, Jan 13, 2009 at 02:40:53PM +0530, Amit Shah wrote: On Tue, Jan 13, 2009 at 09:25:32AM +0100, Alexander Graf wrote: For exactly this purpose KVM_SET_CPUID2 was introduced quite a while ago, enabling support for all CPUID leaf flavors on the kernel side. Merely the userspace call

[ kvm-Bugs-2490866 ] repeatable corruption with qcow2 on kvm-79

2009-01-13 Thread SourceForge.net
Bugs item #2490866, was opened at 2009-01-07 06:10 Message generated for change (Comment added) made by danv You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2490866group_id=180599 Please note that this message will contain a full copy of the comment

[ kvm-Bugs-2504388 ] Syslog on Ubuntu 8.10 (amd64) guest filled up with messages

2009-01-13 Thread SourceForge.net
Bugs item #2504388, was opened at 2009-01-13 13:01 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2504388group_id=180599 Please note that this message will contain a full copy of

RE: XP guests sluggish after around 1 week of uptime

2009-01-13 Thread jmandawg
The guest is not acting up right now since I just rebooted the host on Sunday. Here is the current outputs of the command, and I will post them again when they start acting up: [r...@e6400:~/ 500]$vmstat 1 procs ---memory-- ---swap-- -io -system-- cpu r b

[ kvm-Bugs-2353811 ] Solaris 10 guest unstable

2009-01-13 Thread SourceForge.net
Bugs item #2353811, was opened at 2008-11-27 17:44 Message generated for change (Comment added) made by technologov You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2353811group_id=180599 Please note that this message will contain a full copy of the comment

[ kvm-Bugs-2413430 ] CPU: Linux guests fails on emulated core2duo and coreduo

2009-01-13 Thread SourceForge.net
Bugs item #2413430, was opened at 2008-12-10 11:00 Message generated for change (Comment added) made by technologov You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2413430group_id=180599 Please note that this message will contain a full copy of the comment

Re: [Qemu-devel] virtio breakage with 2.6.25 guest kernel

2009-01-13 Thread Avi Kivity
Alexander Graf wrote: Hi, while I don't fully understand the problem, here's what I experience so far: When using an openSUSE 11.0 kernel (2.6.25) in the guest, virtio on tap breaks with current KVM git, while it used to work before (haven't bisected, definitely worked in kvm-78, but is

[ kvm-Bugs-2504388 ] Syslog on Ubuntu 8.10 (amd64) guest filled up with messages

2009-01-13 Thread SourceForge.net
Bugs item #2504388, was opened at 2009-01-13 13:01 Message generated for change (Comment added) made by martinmaurer You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2504388group_id=180599 Please note that this message will contain a full copy of the

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread Farkas Levente
Avi Kivity wrote: The biggest change this time around is support for the AMD IOMMU for device assignment. As it requires extensive core kernel support, it is only available on Linux 2.6.29rc1 or higher hosts. status report on rhel/centos-5.2 host: - fedora-9 latest kernel now boot again -

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread John Wong
Hi, i installed kvm-83 on xubuntu-amd64/kernel-2.6.7-11. i notice some problem with -net downscript. my kvm start up script like this: qemu-system-x86_64 ... ... -net tap,ifname=tap0,script=/path/kvm-ifup,downscript=/path/kvm-ifdown when the guest shutdown, kvm pass all argument to downscript.

[ kvm-Bugs-2504998 ] kernel memory corruption

2009-01-13 Thread SourceForge.net
Bugs item #2504998, was opened at 2009-01-13 18:24 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2504998group_id=180599 Please note that this message will contain a full copy of

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread Mark McLoughlin
Hi John, On Wed, 2009-01-14 at 00:15 +0800, John Wong wrote: Hi, i installed kvm-83 on xubuntu-amd64/kernel-2.6.7-11. i notice some problem with -net downscript. my kvm start up script like this: qemu-system-x86_64 ... ... -net

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread Amit Shah
On Wed, Jan 14, 2009 at 01:40:27AM +0800, John Wong wrote: Hi Mark, i want to try, but i don't know where can download snapshot source code, i'm long time no use linux. Where can i download kvm snapshot source code? kernel.org? or? Hi John, You apply this patch on top of the kvm-83 release

[ kvm-Bugs-2351676 ] Guests hang periodically on Ubuntu-8.10

2009-01-13 Thread SourceForge.net
Bugs item #2351676, was opened at 2008-11-26 18:59 Message generated for change (Comment added) made by poelzi You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=2351676group_id=180599 Please note that this message will contain a full copy of the comment

[PATCH 0/1] IRQ Routing

2009-01-13 Thread Avi Kivity
Following is my alternative to irq routing. The differences compared to Sheng's version are: - A single ioctl to replace the entire routing table, instead of add/remove ioctls for individual routing entries. Routing changes are rare, and we need to track the entire table in userspace anyway

[PATCH 1/1] KVM: Userspace controlled irq routing

2009-01-13 Thread Avi Kivity
Currently KVM has a static routing from GSI numbers to interrupts (namely, 0-15 are mapped 1:1 to both PIC and IOAPIC, and 16:23 are mapped 1:1 to the IOAPIC). This is insufficient for several reasons: - HPET requires non 1:1 mapping for the timer interrupt - MSIs need a new method to assign

Re: Counting VCPU instructions

2009-01-13 Thread Avi Kivity
(restoring cc) Abhishek Saksena wrote: Other thing which I am not sure how KVM kerenel is synconrinized with Qemu kernel? Can somebody explain this? What's the qemu kernel? Just qemu. Qemu has it's own timers how they are synced up with KVM? For example if the guest is getting

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread Michael Tokarev
Mark McLoughlin wrote: Hi John, On Wed, 2009-01-14 at 00:15 +0800, John Wong wrote: Hi, i installed kvm-83 on xubuntu-amd64/kernel-2.6.7-11. i notice some problem with -net downscript. my kvm start up script like this: qemu-system-x86_64 ... ... -net

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread Michael Tokarev
Michael Tokarev wrote: Mark McLoughlin wrote: [] --- qemu/net.c +++ qemu/net.c @@ -1740,7 +1740,7 @@ void net_cleanup(void) TAPState *s = vc-opaque; if (strcmp(vc-model, tap) == 0 -sscanf(vc-info_str, ifname=%63s , ifname) == 1 +

kvm: make --mem-path memory allocation depend on mmu notifiers

2009-01-13 Thread Marcelo Tosatti
Without mmu notifiers usage of hugepages to back guest memory can cause memory corruption. Signed-off-by: Marcelo Tosatti mtosa...@redhat.com diff --git a/qemu/vl.c b/qemu/vl.c index d0660ab..49cf066 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -4664,6 +4664,11 @@ void *alloc_mem_area(size_t

Re: kvm: make --mem-path memory allocation depend on mmu notifiers

2009-01-13 Thread Anthony Liguori
Marcelo Tosatti wrote: Without mmu notifiers usage of hugepages to back guest memory can cause memory corruption. Really? Why's that? Sorry if I missed a previous discussion of this. Regards, Anthony Liguori Signed-off-by: Marcelo Tosatti mtosa...@redhat.com diff --git a/qemu/vl.c

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread Anthony Liguori
Michael Tokarev wrote: Michael Tokarev wrote: Mark McLoughlin wrote: [] --- qemu/net.c +++ qemu/net.c @@ -1740,7 +1740,7 @@ void net_cleanup(void) TAPState *s = vc-opaque; if (strcmp(vc-model, tap) == 0 -sscanf(vc-info_str,

Re: kvm: make --mem-path memory allocation depend on mmu notifiers

2009-01-13 Thread Marcelo Tosatti
On Tue, Jan 13, 2009 at 02:38:33PM -0600, Anthony Liguori wrote: Marcelo Tosatti wrote: Without mmu notifiers usage of hugepages to back guest memory can cause memory corruption. Really? Why's that? Sorry if I missed a previous discussion of this.

Re: kvm: make --mem-path memory allocation depend on mmu notifiers

2009-01-13 Thread David S. Ahern
Marcelo Tosatti wrote: Without mmu notifiers usage of hugepages to back guest memory can cause memory corruption. Signed-off-by: Marcelo Tosatti mtosa...@redhat.com diff --git a/qemu/vl.c b/qemu/vl.c index d0660ab..49cf066 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -4664,6 +4664,11

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread Michael Tokarev
Anthony Liguori wrote: Michael Tokarev wrote: ... if (strcmp(vc-model, tap) == 0 - sscanf(vc-info_str, ifname=%63s , ifname) == 1 + sscanf(vc-info_str, ifname=%63s,, ifname) == 1 And while we're at it.. Why the parsing isn't done like this: for(tok =

[PATCH 0/4] virtio_net: MAC filtering

2009-01-13 Thread Alex Williamson
Here's an update to the patches I sent last week. The goal of this series is to add RX mode bits, MAC table filtering, and I'll follow up with VLAN filtering, so that the virtio_net device doesn't always run in promiscuous mode. This version now uses a virtqueue for outbound commands for setting

[PATCH 1/4] virtio_net: Allow setting the MAC address of the NIC

2009-01-13 Thread Alex Williamson
Signed-off-by: Alex Williamson alex.william...@hp.com --- drivers/net/virtio_net.c | 23 +-- 1 files changed, 21 insertions(+), 2 deletions(-) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index 43f6523..e7700de 100644 --- a/drivers/net/virtio_net.c +++

[PATCH 2/4] virtio_net: Add a virtqueue for outbound control commands

2009-01-13 Thread Alex Williamson
This will be used for RX mode, MAC filter table, VLAN filtering, etc... Signed-off-by: Alex Williamson alex.william...@hp.com --- drivers/net/virtio_net.c | 55 +++- include/linux/virtio_net.h |3 ++ 2 files changed, 57 insertions(+), 1

[PATCH 3/4] virtio_net: Add a set_rx_mode interface

2009-01-13 Thread Alex Williamson
Signed-off-by: Alex Williamson alex.william...@hp.com --- drivers/net/virtio_net.c | 18 ++ include/linux/virtio_net.h |4 2 files changed, 22 insertions(+), 0 deletions(-) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index de348de..b18dd4c

[PATCH 4/4] virtio_net: Add a MAC filter table

2009-01-13 Thread Alex Williamson
Number of entries configurable via module param. Signed-off-by: Alex Williamson alex.william...@hp.com --- drivers/net/virtio_net.c | 71 +++- include/linux/virtio_net.h |4 ++ 2 files changed, 73 insertions(+), 2 deletions(-) diff --git

[PATCH 2/5] virtio-net: Add a virtqueue for control commands from the guest

2009-01-13 Thread Alex Williamson
This will be used for RX mode, MAC table, VLAN table control, etc... Signed-off-by: Alex Williamson alex.william...@hp.com --- qemu/hw/virtio-net.c | 32 qemu/hw/virtio-net.h |3 +++ 2 files changed, 35 insertions(+), 0 deletions(-) diff --git

[PATCH 1/5] virtio-net: Allow setting the MAC address via set_config

2009-01-13 Thread Alex Williamson
Rename get_config for simplicity Signed-off-by: Alex Williamson alex.william...@hp.com --- qemu/hw/virtio-net.c | 18 -- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/qemu/hw/virtio-net.c b/qemu/hw/virtio-net.c index 1f9dc16..e9b3d46 100644 ---

[PATCH 0/5] virtio-net: MAC filtering

2009-01-13 Thread Alex Williamson
Here's an update to the patches I sent last week. The goal of this series is to add MAC setting and filtering support to the virtio-net backend in qemu/kvm. This version now makes use of a virtqueue for outbound commands from the guest driver. This allows us to support numerous features without

[PATCH 4/5] virtio-net: Enable filtering based on MAC, promisc, broadcast and allmulti

2009-01-13 Thread Alex Williamson
Signed-off-by: Alex Williamson alex.william...@hp.com --- qemu/hw/virtio-net.c | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/qemu/hw/virtio-net.c b/qemu/hw/virtio-net.c index c5d9952..99e582f 100644 --- a/qemu/hw/virtio-net.c +++

[PATCH 3/5] virtio-net: Add promiscuous and all-multicast mode status bits

2009-01-13 Thread Alex Williamson
Set via control virtqueue. For compatibility with older guest drivers we need to default to promiscuous. Signed-off-by: Alex Williamson alex.william...@hp.com --- qemu/hw/virtio-net.c | 41 ++--- qemu/hw/virtio-net.h |4 2 files changed, 42

Re: [PATCH 0/5] virtio-net: MAC filtering

2009-01-13 Thread Anthony Liguori
Alex Williamson wrote: Here's an update to the patches I sent last week. The goal of this series is to add MAC setting and filtering support to the virtio-net backend in qemu/kvm. This version now makes use of a virtqueue for outbound commands from the guest driver. This allows us to support

Re: [PATCH] Fix almost infinite loop in APIC

2009-01-13 Thread Marcelo Tosatti
On Tue, Jan 13, 2009 at 03:47:49PM +0800, Sheng Yang wrote: On Sunday 11 January 2009 12:55:58 Marcelo Tosatti wrote: The original apic_timer_intr_post() got: if (apic apic_lvt_vector(apic, APIC_LVTT) == vec) apic-timer.last_update = ktime_add_ns(

Re: [ANNOUNCE] kvm-83 release

2009-01-13 Thread Mark McLoughlin
On Wed, 2009-01-14 at 00:01 +0300, Michael Tokarev wrote: Anthony Liguori wrote: Michael Tokarev wrote: ... if (strcmp(vc-model, tap) == 0 - sscanf(vc-info_str, ifname=%63s , ifname) == 1 + sscanf(vc-info_str, ifname=%63s,, ifname) == 1 And while we're at

Still LSI scsi problems with Windows guest and kvm 82?

2009-01-13 Thread Roland Dreier
I have a (32-bit) Windows XP guest installed, and if I start kvm-82 (from the Debian packages) on a 2.6.29-rc1 kernel (running 64-bit on an AMD host), the guest boots but soon dies with messages along the lines of: lsi_scsi: error: Unimplemented message 0x0c lsi_scsi: error: Reselect with

Re: Still LSI scsi problems with Windows guest and kvm 82?

2009-01-13 Thread Ryan Harper
* Roland Dreier rdre...@cisco.com [2009-01-13 16:43]: I have a (32-bit) Windows XP guest installed, and if I start kvm-82 (from the Debian packages) on a 2.6.29-rc1 kernel (running 64-bit on an AMD host), the guest boots but soon dies with messages along the lines of: lsi_scsi: error:

Re: kvm: make --mem-path memory allocation depend on mmu notifiers

2009-01-13 Thread Marcelo Tosatti
On Tue, Jan 13, 2009 at 01:57:09PM -0700, David S. Ahern wrote: Marcelo Tosatti wrote: Without mmu notifiers usage of hugepages to back guest memory can cause memory corruption. Signed-off-by: Marcelo Tosatti mtosa...@redhat.com diff --git a/qemu/vl.c b/qemu/vl.c index