Re: [SeaBIOS] Graphics card pass-through working with two pass pci-initialization

2011-06-06 Thread Gerd Hoffmann
Hi, As Jan points out though, is a dynamic PCI region really needed? Those that need a large PCI region are also likely to need a large amount of memory. Maybe the space for PCI should just be increased. Just changing it will not work as it will break live migration. I think one option is

Re: [PATCH] kvm tools, ui: Optimize SDL updates

2011-06-06 Thread Gerd Hoffmann
Hi, Also, I'm fairly sure vesafb implements scrolling almost unconditionally. Check for ypan in drivers/video/vesafb.c. ypan uses the protected mode interface provided by the vesa bios. It is not used by default works on 32bit only. If you think qxl-fb can be done gradually in that

Re: [PATCH 8/8] arch/x86: use printk_ratelimited instead of printk_ratelimit

2011-06-06 Thread Rusty Russell
On Sat, 4 Jun 2011 17:37:04 +0200, Christian Dietrich christian.dietr...@informatik.uni-erlangen.de wrote: Since printk_ratelimit() shouldn't be used anymore (see comment in include/linux/printk.h), replace it with printk_ratelimited. Acked-by: Rusty Russell ru...@rustcorp.com.au (lguest part)

Re: [PATCHv2 RFC 0/4] virtio and vhost-net capacity handling

2011-06-06 Thread Rusty Russell
On Thu, 2 Jun 2011 20:17:21 +0300, Michael S. Tsirkin m...@redhat.com wrote: On Thu, Jun 02, 2011 at 06:42:35PM +0300, Michael S. Tsirkin wrote: OK, here's a new attempt to use the new capacity api. I also added more comments to clarify the logic. Hope this is more readable. Let me know

Re: [Android-virt] [PATCH v3 1/8] ARM: KVM: Initial skeleton to compile KVM support

2011-06-06 Thread Avi Kivity
On 06/05/2011 08:19 PM, Alexander Graf wrote: On 05.06.2011, at 18:33, Avi Kivity wrote: On 06/05/2011 07:30 PM, Alexander Graf wrote: Could you elaborate what you mean here? I'm not really following. Are you suggesting a new arch-generic interface? (Pardon my ignorance).

Re: [Android-virt] [PATCH v3 1/8] ARM: KVM: Initial skeleton to compile KVM support

2011-06-06 Thread Avi Kivity
On 06/05/2011 08:54 PM, Alexander Graf wrote: On 05.06.2011, at 19:48, Jan Kiszka wrote: On 2011-06-05 19:19, Alexander Graf wrote: On 05.06.2011, at 18:33, Avi Kivity wrote: On 06/05/2011 07:30 PM, Alexander Graf wrote: Could you elaborate what you mean here? I'm not really

Re: [PATCH] kvm tools: Use vesa reserved space for strings and modes

2011-06-06 Thread Francis Moreau
Hi guys sorry for being quiet those last days... On Thu, Jun 2, 2011 at 10:55 AM, Pekka Enberg penb...@kernel.org wrote: On Wed, 1 Jun 2011, Sasha Levin wrote: As defined in the spec, the reserved space in struct vesa_general_info should be used to store vesa oem string an a list of possible

Re: [PATCH] kvm tools: Use vesa reserved space for strings and modes

2011-06-06 Thread Pekka Enberg
On 6/6/11 10:43 AM, Francis Moreau wrote: Hi guys sorry for being quiet those last days... On Thu, Jun 2, 2011 at 10:55 AM, Pekka Enbergpenb...@kernel.org wrote: On Wed, 1 Jun 2011, Sasha Levin wrote: As defined in the spec, the reserved space in struct vesa_general_info should be used to

Re: [PATCH] kvm tools: Use vesa reserved space for strings and modes

2011-06-06 Thread Francis Moreau
On Mon, Jun 6, 2011 at 9:50 AM, Pekka Enberg penb...@cs.helsinki.fi wrote: On 6/6/11 10:43 AM, Francis Moreau wrote: Hi guys sorry for being quiet those last days... On Thu, Jun 2, 2011 at 10:55 AM, Pekka Enbergpenb...@kernel.org  wrote: On Wed, 1 Jun 2011, Sasha Levin wrote: As defined

Re: [PATCH 8/8] arch/x86: use printk_ratelimited instead of printk_ratelimit

2011-06-06 Thread richard -rw- weinberger
On Mon, Jun 6, 2011 at 8:35 AM, Rusty Russell ru...@rustcorp.com.au wrote: On Sat, 4 Jun 2011 17:37:04 +0200, Christian Dietrich christian.dietr...@informatik.uni-erlangen.de wrote: Since printk_ratelimit() shouldn't be used anymore (see comment in include/linux/printk.h), replace it with

[AUTOTEST PATCH 0/7] ahci+usb support, rhel5 fix.

2011-06-06 Thread Gerd Hoffmann
Hi, This patch series brings support for ahci and usb disks and cdroms to autotest. It also fixes a bug in the rhel5 kickstart. Gerd Hoffmann (7): Fix rhel5 install Use nodefaults ahci: disk images ahci: cdroms usb: cdrom support usb: disk support Add ahci+usb variants.

[AUTOTEST PATCH 5/7] usb: cdrom support

2011-06-06 Thread Gerd Hoffmann
This patch adds support for virtual usb cdrom drives. Signed-off-by: Gerd Hoffmann kra...@redhat.com --- client/virt/kvm_vm.py | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/client/virt/kvm_vm.py b/client/virt/kvm_vm.py index 948d14f..ce7cec9 100644 ---

[AUTOTEST PATCH 1/7] Fix rhel5 install

2011-06-06 Thread Gerd Hoffmann
There is no ntpdate.rpm in RHEL-5, ntp.rpm has /usr/sbin/ntpdate. Signed-off-by: Gerd Hoffmann kra...@redhat.com --- client/tests/kvm/unattended/RHEL-5-series.ks |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/client/tests/kvm/unattended/RHEL-5-series.ks

[AUTOTEST PATCH 3/7] ahci: disk images

2011-06-06 Thread Gerd Hoffmann
This patch adds support for AHCI disk images. Signed-off-by: Gerd Hoffmann kra...@redhat.com --- client/virt/kvm_vm.py | 16 +++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/client/virt/kvm_vm.py b/client/virt/kvm_vm.py index af24272..f791851 100644 ---

[AUTOTEST PATCH 6/7] usb: disk support

2011-06-06 Thread Gerd Hoffmann
This patch adds support for virtual usb sticks. Signed-off-by: Gerd Hoffmann kra...@redhat.com --- client/virt/kvm_vm.py |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/client/virt/kvm_vm.py b/client/virt/kvm_vm.py index ce7cec9..157036d 100644 ---

[AUTOTEST PATCH 7/7] Add ahci+usb variants.

2011-06-06 Thread Gerd Hoffmann
Add test variants for ahci and usb to the tests_base.cfg.sample file. Signed-off-by: Gerd Hoffmann kra...@redhat.com --- client/tests/kvm/tests_base.cfg.sample |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/client/tests/kvm/tests_base.cfg.sample

[AUTOTEST PATCH 4/7] ahci: cdroms

2011-06-06 Thread Gerd Hoffmann
This patch adds support for AHCI cdroms. SCSI cdroms work too as side effect. The patch also adds cd_format, which is the same as disk_format but for cdroms. Signed-off-by: Gerd Hoffmann kra...@redhat.com --- client/virt/kvm_vm.py | 24 1 files changed, 20

[AUTOTEST PATCH 2/7] Use nodefaults

2011-06-06 Thread Gerd Hoffmann
Use -nodefaults for qemu when supported. Also explicitly add -vga std then. Without this qemu creates a ide cdrom drive even if you don't ask for it, which disturbs installation from ahci/scsi/usb cdroms drives. Signed-off-by: Gerd Hoffmann kra...@redhat.com --- client/virt/kvm_vm.py |4

Re: [PATCH] KVM: Initialize kvm before registering the mmu notifier

2011-06-06 Thread Avi Kivity
On 06/03/2011 11:04 PM, Mike Waychison wrote: It doesn't make sense to ever see a half-initialized kvm structure on mmu notifier callbacks. Previously, 85722cda changed the ordering to ensure that the mmu_lock was initialized before mmu notifier registration, but there is still a race where the

Re: symbol export twice help!

2011-06-06 Thread Avi Kivity
On 06/03/2011 09:38 PM, calvino wrote: Hi,recently I just read the source of kvm and add some code to it.I compile my own kernel version 2.6.27, and the compile the kvm at version kvm-88, the comipile warnning shows some symbol was export twice,and previous export from vmlinx.I find the

Re: [PATCH 2/2] kvm tools, vesa: Fix 'ah' access in int10_vesa()

2011-06-06 Thread Avi Kivity
On 06/03/2011 10:37 PM, Pekka Enberg wrote: This patch fixes access to 'ah' in int10_vesa() by masking the high bits. @@ -131,7 +131,7 @@ static void int10_vesa(struct int10_args *args) { u8 al; - al = args-eax; + al = args-eax 0xff; Isn't this reading %al? And the

Re: KVM host freezing

2011-06-06 Thread Avi Kivity
On 06/02/2011 11:36 PM, Marc Haber wrote: On Thu, Jun 02, 2011 at 04:41:30PM +0300, Avi Kivity wrote: On 06/02/2011 11:25 AM, Marc Haber wrote: Is there any possibility that the freezes have to do with the unhandles (rd|wr)msr messages? Very unlikely. What does that mean anyway? The

Re: [PATCH 31/31] nVMX: Documentation

2011-06-06 Thread Avi Kivity
On 06/02/2011 11:15 AM, Nadav Har'El wrote: On Wed, Jun 01, 2011, Jan Kiszka wrote about Re: [PATCH 31/31] nVMX: Documentation: Documentation/kvm/nested-vmx.txt | 251 + This needs to go to Documentation/virtual/kvm. Oops, I guess the rug moved under my feet

Re: [PATCH 2/2] kvm tools, vesa: Fix 'ah' access in int10_vesa()

2011-06-06 Thread Cyrill Gorcunov
On Mon, Jun 06, 2011 at 11:28:56AM +0300, Avi Kivity wrote: On 06/03/2011 10:37 PM, Pekka Enberg wrote: This patch fixes access to 'ah' in int10_vesa() by masking the high bits. @@ -131,7 +131,7 @@ static void int10_vesa(struct int10_args *args) { u8 al; -al = args-eax; +

Re: [PATCH v2] KVM: Clarify KVM_ASSIGN_PCI_DEVICE documentation

2011-06-06 Thread Avi Kivity
On 06/03/2011 09:51 AM, Jan Kiszka wrote: From: Jan Kiszkajan.kis...@siemens.com Neither host_irq nor the guest_msi struct are used anymore today. Tag the former, drop the latter to avoid confusion. diff --git a/include/linux/kvm.h b/include/linux/kvm.h index 55ef181..9c9ca7c 100644 ---

Re: [PATCH v8 0/4] Enable SMEP feature support for KVM

2011-06-06 Thread Avi Kivity
On 06/03/2011 06:13 AM, Yang, Wei Y wrote: This patchset enables a new CPU feature SMEP (Supervisor Mode Execution Protection) in KVM. SMEP prevents kernel from executing code in application. Updated Intel SDM describes this CPU feature. The document will be published soon. This patchset is

Re: [PATCH 2/2] kvm tools, vesa: Fix 'ah' access in int10_vesa()

2011-06-06 Thread Pekka Enberg
On Mon, Jun 6, 2011 at 11:37 AM, Cyrill Gorcunov gorcu...@gmail.com wrote: On Mon, Jun 06, 2011 at 11:28:56AM +0300, Avi Kivity wrote: On 06/03/2011 10:37 PM, Pekka Enberg wrote: This patch fixes access to 'ah' in int10_vesa() by masking the high bits. @@ -131,7 +131,7 @@ static void

Seeing DMAR errors after multiple load/unload with SR-IOV

2011-06-06 Thread padmanabh ratnakar
Hi, I am using linux kernel 2.6.39. I have a IBM x3650 M3 system. I have used following boot options - intel_iommu=on iommu=pt I was loading/unloading my NIC driver(be2net) with num_vfs=7. After some iterations I get following DMAR errors - Jun 4 03:50:20 rhel6 kernel: Uhhuh. NMI

Re: [PATCH 2/2] kvm tools, vesa: Fix 'ah' access in int10_vesa()

2011-06-06 Thread Cyrill Gorcunov
On Mon, Jun 06, 2011 at 12:09:25PM +0300, Pekka Enberg wrote: ... Type conversion will do the work but having explicit masking is a way better I believe, at least it makes this code snippet notable. True but the patch description is bogus as it really doesn't _fix_ anything.

Re: [RFC][PATCH] Fix superpage unmap on Intel IOMMU

2011-06-06 Thread Roedel, Joerg
On Fri, Jun 03, 2011 at 03:31:30PM -0400, David Woodhouse wrote: + /* The KVM code is *fucked* in the head. It maps the range +one page at a time, using 4KiB pages unless it actually +allocated hugepages using hugetlbfs. This is acutally by design. The IOMMU driver is not

[Bug 36222] kvm: 100% CPU usage after 3.0.0-rc1 guest shutdown

2011-06-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=36222 Florian Mickler flor...@mickler.org changed: What|Removed |Added CC||flor...@mickler.org

Re: USB EHCI patch for 0.14.0?

2011-06-06 Thread André Weidemann
Hi David, On 08.03.2011 19:54, David Ahern wrote: On 03/08/11 09:23, Erik Rull wrote: Hi all, I've found a usb ehci patch here in the mailing list (begin of january) but it does not fit for 0.14.0. That was from me and prior work on ehci. Is there an updated patch for the latest

KVM call agendo for June 7th

2011-06-06 Thread Juan Quintela
Please send in any agenda items you are interested in covering. Thanks, Juan. -- 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 http://vger.kernel.org/majordomo-info.html

[PATCH] KVM: Adjust shadow paging to work when SMEP=1 and CR0.WP=0

2011-06-06 Thread Avi Kivity
When CR0.WP=0, we sometimes map user pages as kernel pages (to allow the kernel to write to them). Unfortunately this also allows the kernel to fetch from these pages, even if CR4.SMEP is set. Adjust for this by also setting NX on the spte in these circumstances. Signed-off-by: Avi Kivity

Re: USB EHCI patch for 0.14.0?

2011-06-06 Thread David Ahern
On 06/06/2011 05:33 AM, André Weidemann wrote: I also wanted to give EHCI support a try. Unfortunately your patch does not apply to current qemu-kvm git clone. Changes in hw/pc_piix.c and usb-linux.c make the patch fail. I was able to fix most rejects by hand, but the last reject in

[PATCH] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Pekka Enberg
This patch converts hw/vesa.c to use guest-mapped memory for framebuffer and drops the slow MMIO emulation. This speeds up framebuffer accesses considerably. Please note that this can be optimized even more with the KVM_GET_DIRTY_LOG ioctl() as explained by Alexander Graf. Cc: Alexander Graf

[PATCH v2] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Pekka Enberg
This patch converts hw/vesa.c to use guest-mapped memory for framebuffer and drops the slow MMIO emulation. This speeds up framebuffer accesses considerably. Please note that this can be optimized even more with the KVM_GET_DIRTY_LOG ioctl() as explained by Alexander Graf. Cc: Alexander Graf

Re: [PATCH] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Alexander Graf
On 06.06.2011, at 15:51, Pekka Enberg wrote: This patch converts hw/vesa.c to use guest-mapped memory for framebuffer and drops the slow MMIO emulation. This speeds up framebuffer accesses considerably. Please note that this can be optimized even more with the KVM_GET_DIRTY_LOG ioctl() as

Re: Restoring saved guest causes guest to reboot

2011-06-06 Thread Markus Schade
On 05/30/2011 08:02 PM, Marcelo Tosatti wrote: On Mon, May 30, 2011 at 02:16:41PM +0200, Markus Schade wrote: On Thu, 26 May 2011, Joerg Roedel wrote: On Thu, May 26, 2011 at 05:20:32PM +0200, Markus Schade wrote: On 05/26/2011 01:28 PM, Markus Schade wrote: On 05/26/2011 08:44 AM, Avi

Re: [PATCH] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Pekka Enberg
On Mon, 2011-06-06 at 15:56 +0200, Alexander Graf wrote: @@ -216,7 +216,7 @@ void kvm__init_ram(struct kvm *kvm) phys_size = kvm-ram_size - phys_size; host_mem = kvm-ram_start + phys_start; - kvm_register_mem_slot(kvm, 1, phys_start, phys_size,

Re: [PATCH v2] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Alexander Graf
On 06.06.2011, at 15:56, Pekka Enberg wrote: This patch converts hw/vesa.c to use guest-mapped memory for framebuffer and drops the slow MMIO emulation. This speeds up framebuffer accesses considerably. Please note that this can be optimized even more with the KVM_GET_DIRTY_LOG ioctl() as

Re: [PATCH v2] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Pekka Enberg
On Mon, 2011-06-06 at 15:59 +0200, Alexander Graf wrote: Please keep in mind that this is pretty fragile. It will probably work out for you now, but memslots are 1) limited I assume KVM_SET_USER_MEMORY_REGION doesn't fail silenty here? 2) don't deal with overlap So please add at

Re: [PATCH v2] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Alexander Graf
On 06.06.2011, at 16:05, Pekka Enberg wrote: On Mon, 2011-06-06 at 15:59 +0200, Alexander Graf wrote: Please keep in mind that this is pretty fragile. It will probably work out for you now, but memslots are 1) limited I assume KVM_SET_USER_MEMORY_REGION doesn't fail silenty here?

[PATCH v3] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Pekka Enberg
This patch converts hw/vesa.c to use guest-mapped memory for framebuffer and drops the slow MMIO emulation. This speeds up framebuffer accesses considerably. Please note that this can be optimized even more with the KVM_GET_DIRTY_LOG ioctl() as explained by Alexander Graf. Cc: Alexander Graf

[GIT PULL] KVM updates for 3.0-rc2

2011-06-06 Thread Avi Kivity
Linus, please pull from ssh://master.kernel.org/pub/scm/virt/kvm/kvm.git kvm-updates/3.0 to receive a few KVM fixes for -rc2. In particular, guest in/out instructions have been faulting when they shouldn't have. Heiko Carstens (1): KVM: add missing void __user * cast to access_ok()

Re: [PATCH v3] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Sasha Levin
On Mon, 2011-06-06 at 17:08 +0300, Pekka Enberg wrote: This patch converts hw/vesa.c to use guest-mapped memory for framebuffer and drops the slow MMIO emulation. This speeds up framebuffer accesses considerably. Please note that this can be optimized even more with the KVM_GET_DIRTY_LOG

[PATCH v4] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Pekka Enberg
This patch converts hw/vesa.c to use guest-mapped memory for framebuffer and drops the slow MMIO emulation. This speeds up framebuffer accesses considerably. Please note that this can be optimized even more with the KVM_GET_DIRTY_LOG ioctl() as explained by Alexander Graf. Cc: Alexander Graf

Re: [PATCH v3] kvm tools, vesa: Use guest-mapped memory for framebuffer

2011-06-06 Thread Pekka Enberg
On Mon, Jun 6, 2011 at 7:06 PM, Sasha Levin levinsasha...@gmail.com wrote: Currently VESA was mapping itself into 0xd000 which means that we'll have an overlap when we're using more than 4GB. Maybe we should increase our PCI gap size (which starts at 0xf000 currently) to include that

[PATCH 2/2] KVM Test: sample configure for multi_disk test case.

2011-06-06 Thread Lucas Meneghel Rodrigues
From: Feng Yang fy...@redhat.com Test this configure with nic_mode = tap Signed-off-by: Feng Yang fy...@redhat.com --- client/tests/kvm/tests_base.cfg.sample | 91 +++- 1 files changed, 89 insertions(+), 2 deletions(-) diff --git

[PATCH 1/2] KVM Test: Add a new kvm subtest multi_disk v2

2011-06-06 Thread Lucas Meneghel Rodrigues
From: Feng Yang fy...@redhat.com This case test multi disk suport in kvm guest os. It can work on Linux and Windows guest. Changes from v1: * Update test to use a more current version of the virt autotest API. Signed-off-by: Feng Yang fy...@redhat.com --- client/tests/kvm/tests/multi_disk.py |

KVM: VMX: do not overwrite uptodate vcpu-arch.cr3 on KVM_SET_SREGS

2011-06-06 Thread Marcelo Tosatti
Only decache guest CR3 value if vcpu-arch.cr3 is stale. Fixes loadvm with live guest. Signed-off-by: Marcelo Tosatti mtosa...@redhat.com Tested-by: Markus Schade markus.sch...@gmail.com diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 750b0ff..772c4d2 100644 --- a/arch/x86/kvm/vmx.c

Re: [Autotest] [PATCH 0/5] Create private bridge, get rid of qemu ifup scripts v3

2011-06-06 Thread Lucas Meneghel Rodrigues
Yay, committed :) \o/ Thanks to Amos, Cleber, Jason. The 4 of us made a great job with this patchset. If somebody else notices any problems with this, yell and we'll fix it. http://autotest.kernel.org/changeset/5399 http://autotest.kernel.org/changeset/5400

Re: [PATCH v2] KVM: Clarify KVM_ASSIGN_PCI_DEVICE documentation

2011-06-06 Thread Jan Kiszka
On 2011-06-06 10:42, Avi Kivity wrote: On 06/03/2011 09:51 AM, Jan Kiszka wrote: From: Jan Kiszkajan.kis...@siemens.com Neither host_irq nor the guest_msi struct are used anymore today. Tag the former, drop the latter to avoid confusion. diff --git a/include/linux/kvm.h

[PATCH v4] kvm tools: Add QCOW level2 caching support

2011-06-06 Thread Prasad Joshi
QCOW uses two tables level1 (L1) table and level2 (L2) table. The L1 table points to offset of L2 table. When a QCOW image is probed, the L1 table is cached in the memory to avoid reading it from disk on every access. This caching improves the performance. The similar performance improvement can

Re: KVM induced panic on 2.6.38[2367] 2.6.39

2011-06-06 Thread Bart De Schuymer
Hi Brad, This has probably nothing to do with ebtables, so please rmmod in case it's loaded. A few questions I didn't directly see an answer to in the threads I scanned... I'm assuming you actually use the bridging firewall functionality. So, what iptables modules do you use? Can you reduce

Re: KVM induced panic on 2.6.38[2367] 2.6.39

2011-06-06 Thread Eric Dumazet
Le dimanche 05 juin 2011 à 21:45 +0800, Brad Campbell a écrit : On 05/06/11 16:14, Avi Kivity wrote: On 06/03/2011 04:38 PM, Brad Campbell wrote: Is there anyone who can point me at the appropriate cage to rattle? I know it appears to be a netfilter issue, but I don't seem to be able to

Re: KVM induced panic on 2.6.38[2367] 2.6.39

2011-06-06 Thread Eric Dumazet
Le lundi 06 juin 2011 à 22:10 +0200, Bart De Schuymer a écrit : Hi Brad, This has probably nothing to do with ebtables, so please rmmod in case it's loaded. A few questions I didn't directly see an answer to in the threads I scanned... I'm assuming you actually use the bridging firewall

KVM call agenda for June 7

2011-06-06 Thread Chris Wright
Please send in any agenda items you are interested in covering. thanks, -chris -- 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 http://vger.kernel.org/majordomo-info.html

[PATCH] pci-assign: Do not reset the device unless the kernel supports it

2011-06-06 Thread Jan Kiszka
From: Jan Kiszka jan.kis...@siemens.com At least kernels 2.6.38 and 2.6.39 do not properly support issuing a reset on an assigned device and corrupt its config space. Prevent this by checking for a host kernel with the required support, tagged by the to-be-introduced KVM_CAP_DEVICE_RESET.

Re: [PATCH] pci-assign: Do not reset the device unless the kernel supports it

2011-06-06 Thread Alex Williamson
On Mon, 2011-06-06 at 23:30 +0200, Jan Kiszka wrote: From: Jan Kiszka jan.kis...@siemens.com At least kernels 2.6.38 and 2.6.39 do not properly support issuing a reset on an assigned device and corrupt its config space. Prevent this by checking for a host kernel with the required support,

Re: [PATCH] pci-assign: Do not reset the device unless the kernel supports it

2011-06-06 Thread Jan Kiszka
On 2011-06-06 23:48, Alex Williamson wrote: On Mon, 2011-06-06 at 23:30 +0200, Jan Kiszka wrote: From: Jan Kiszka jan.kis...@siemens.com At least kernels 2.6.38 and 2.6.39 do not properly support issuing a reset on an assigned device and corrupt its config space. Prevent this by checking for

Re: [Autotest] [AUTOTEST PATCH 0/7] ahci+usb support, rhel5 fix.

2011-06-06 Thread Lucas Meneghel Rodrigues
Hi Gerd, This patchset looks good to me, and I could verify the options work fine on qemu-kvm.git upstream (the Fedora 15 shipped version doesn't have support for all the needed qemu command line options). I've skipped the 1st patch, as this problem was already fixed on a previous commit:

Re: Seeing DMAR errors after multiple load/unload with SR-IOV

2011-06-06 Thread Alex Williamson
On Mon, 2011-06-06 at 14:39 +0530, padmanabh ratnakar wrote: Hi, I am using linux kernel 2.6.39. I have a IBM x3650 M3 system. I have used following boot options - intel_iommu=on iommu=pt I was loading/unloading my NIC driver(be2net) with num_vfs=7. After some iterations I get

Re: Seeing DMAR errors after multiple load/unload with SR-IOV

2011-06-06 Thread Chris Wright
* Alex Williamson (alex.william...@redhat.com) wrote: On Mon, 2011-06-06 at 14:39 +0530, padmanabh ratnakar wrote: Hi, I am using linux kernel 2.6.39. I have a IBM x3650 M3 system. I have used following boot options - intel_iommu=on iommu=pt I was loading/unloading my NIC

Re: [PATCH 8/8] arch/x86: use printk_ratelimited instead of printk_ratelimit

2011-06-06 Thread Rusty Russell
On Mon, 6 Jun 2011 10:11:53 +0200, richard -rw- weinberger richard.weinber...@gmail.com wrote: On Mon, Jun 6, 2011 at 8:35 AM, Rusty Russell ru...@rustcorp.com.au wrote: On Sat, 4 Jun 2011 17:37:04 +0200, Christian Dietrich christian.dietr...@informatik.uni-erlangen.de wrote: Since

Re: KVM induced panic on 2.6.38[2367] 2.6.39

2011-06-06 Thread Brad Campbell
On 07/06/11 04:10, Bart De Schuymer wrote: Hi Brad, This has probably nothing to do with ebtables, so please rmmod in case it's loaded. A few questions I didn't directly see an answer to in the threads I scanned... I'm assuming you actually use the bridging firewall functionality. So, what

Re: [PATCH 8/8] arch/x86: use printk_ratelimited instead of printk_ratelimit

2011-06-06 Thread Joe Perches
On Tue, 2011-06-07 at 12:41 +0930, Rusty Russell wrote: On Mon, 6 Jun 2011 10:11:53 +0200, richard -rw- weinberger richard.weinber...@gmail.com wrote: printk_ratelimited() needs DEFINE_RATELIMIT_STATE() which is defined in ratelimit.h. Yech. I'm assuming that making printk.h include

Re: [PATCH 00/13] KVM: PPC: e500: SPE and MMU

2011-06-06 Thread Scott Wood
On Sat, 4 Jun 2011 01:59:34 +0200 Alexander Graf ag...@suse.de wrote: On 03.06.2011, at 01:15, Scott Wood wrote: This patchset contains SPE state management for e500 KVM guests, as well as MMU enhancements (performance, userspace visibility, and support for mapping things that aren't

Re: [PATCH 00/13] KVM: PPC: e500: SPE and MMU

2011-06-06 Thread Alexander Graf
On 06.06.2011, at 20:38, Scott Wood wrote: On Sat, 4 Jun 2011 01:59:34 +0200 Alexander Graf ag...@suse.de wrote: On 03.06.2011, at 01:15, Scott Wood wrote: This patchset contains SPE state management for e500 KVM guests, as well as MMU enhancements (performance, userspace visibility,