Re: [PATCH V3 2/2] tcm_vhost: Initialize vq->last_used_idx when set endpoint

2013-04-08 Thread Nicholas A. Bellinger
On Mon, 2013-04-08 at 10:10 +0300, Michael S. Tsirkin wrote: > On Wed, Apr 03, 2013 at 02:17:38PM +0800, Asias He wrote: > > This patch fixes guest hang when booting seabios and guest. > > > > [0.576238] scsi0 : Virtio SCSI HBA > > [0.616754] virtio_scsi virtio1: request:id 0 is not a

Re: [PATCH V4 0/2] tcm_vhost hotplug

2013-04-08 Thread Nicholas A. Bellinger
On Fri, 2013-03-22 at 13:39 +0800, Asias He wrote: > Asias He (2): > tcm_vhost: Introduce tcm_vhost_check_feature() > tcm_vhost: Add hotplug/hotunplug support > > drivers/vhost/tcm_vhost.c | 224 > -- > drivers/vhost/tcm_vhost.h | 10 +++ > 2 file

Re: [PATCH V2 0/3] tcm_vhost pending requests flush

2013-04-08 Thread Nicholas A. Bellinger
On Fri, 2013-03-22 at 14:55 +0800, Asias He wrote: > Changes in v2: > - Increase/Decrease inflight requests in > vhost_scsi_{allocate,free}_cmd and tcm_vhost_{allocate,free}_evt > > Asias He (3): > tcm_vhost: Wait for pending requests in vhost_scsi_flush() > tcm_vhost: Wait for pending reque

Re: [PATCH V4 0/2] tcm_vhost hotplug

2013-04-08 Thread Nicholas A. Bellinger
(Re-send, as target-devel CC' managed to get dropped) On Fri, 2013-03-22 at 13:39 +0800, Asias He wrote: > Asias He (2): > tcm_vhost: Introduce tcm_vhost_check_feature() > tcm_vhost: Add hotplug/hotunplug support > > drivers/vhost/tcm_vhost.c | 224 >

Re: [PATCH V4 0/2] tcm_vhost hotplug

2013-04-08 Thread Michael S. Tsirkin
On Mon, Apr 08, 2013 at 02:31:27PM -0700, Nicholas A. Bellinger wrote: > On Fri, 2013-03-22 at 13:39 +0800, Asias He wrote: > > Asias He (2): > > tcm_vhost: Introduce tcm_vhost_check_feature() > > tcm_vhost: Add hotplug/hotunplug support > > > > drivers/vhost/tcm_vhost.c | 224 > > ++

Re: [PATCH-v2 1/2] virtio-scsi: create VirtIOSCSICommon

2013-04-08 Thread Anthony Liguori
"Nicholas A. Bellinger" writes: > From: Paolo Bonzini > > This patch refactors existing virtio-scsi code into VirtIOSCSICommon > in order to allow virtio_scsi_init_common() to be used by both internal > virtio_scsi_init() and external vhost-scsi-pci code. > > Changes in Patch-v2: >- Move ->g

[PATCH 1/3] kvm tools: Increase amount of possible interrupts per PCI device

2013-04-08 Thread Sasha Levin
We've limited the amount of interrupts per PCI device to be the maximum amount of VQs. Now that the maximum amount of VQs has increased, time to increase this as well. Signed-off-by: Sasha Levin --- tools/kvm/include/kvm/virtio-pci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 2/3] kvm-tools: support virtio-net ctrl queue

2013-04-08 Thread Sasha Levin
We don't need much out of it at this point, but we will need it for virtio-net mq patch. Signed-off-by: Sasha Levin --- tools/kvm/virtio/net.c | 34 -- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/tools/kvm/virtio/net.c b/tools/kvm/virtio/net.c i

[PATCH 3/3] kvm tools: virtio-net multiqueue support

2013-04-08 Thread Sasha Levin
This patch adds support for multiple virtio-net queues. Each queue gets assigned to it's own corresponding rx/tx thread. The max amount of queue pairs is 8 right now, it's up to the guest to decide the actual amount of queues it wants using ethtool. For example, if I want 2 queue pairs on eth0:

Re: [RFC PATCH v3 5/6] kvm/ppc/mpic: in-kernel MPIC emulation

2013-04-08 Thread Scott Wood
On 04/08/2013 01:30:42 AM, Paul Mackerras wrote: On Tue, Apr 02, 2013 at 08:57:52PM -0500, Scott Wood wrote: > Hook the MPIC code up to the KVM interfaces, add locking, etc. [snip] > @@ -2164,6 +2164,15 @@ static int kvm_ioctl_create_device(struct kvm *kvm, >bool test = cd->flags & KVM_C

Re: [RFC PATCH v3 1/6] kvm: add device control API

2013-04-08 Thread Scott Wood
On 04/08/2013 12:33:13 AM, Paul Mackerras wrote: On Tue, Apr 02, 2013 at 08:57:48PM -0500, Scott Wood wrote: [snip] > +static int kvm_ioctl_create_device(struct kvm *kvm, > + struct kvm_create_device *cd) > +{ > + bool test = cd->flags & KVM_CREATE_DEVICE_TEST; > +

Re: [PATCH V4 0/2] tcm_vhost hotplug

2013-04-08 Thread Asias He
On Mon, Apr 08, 2013 at 02:31:27PM -0700, Nicholas A. Bellinger wrote: > On Fri, 2013-03-22 at 13:39 +0800, Asias He wrote: > > Asias He (2): > > tcm_vhost: Introduce tcm_vhost_check_feature() > > tcm_vhost: Add hotplug/hotunplug support > > > > drivers/vhost/tcm_vhost.c | 224 > > ++

RE: RFC: vfio API changes needed for powerpc (v3)

2013-04-08 Thread Yoder Stuart-B08248
> -Original Message- > From: Wood Scott-B07421 > Sent: Friday, April 05, 2013 5:17 PM > To: Yoder Stuart-B08248 > Cc: Alex Williamson; Wood Scott-B07421; ag...@suse.de; Bhushan Bharat-R65777; > Sethi Varun-B16395; > kvm@vger.kernel.org; qemu-de...@nongnu.org; io...@lists.linux-foundation

Re: [PATCH-v2 1/2] virtio-scsi: create VirtIOSCSICommon

2013-04-08 Thread Nicholas A. Bellinger
On Mon, 2013-04-08 at 16:59 -0500, Anthony Liguori wrote: > "Nicholas A. Bellinger" writes: > > > From: Paolo Bonzini > > > > This patch refactors existing virtio-scsi code into VirtIOSCSICommon > > in order to allow virtio_scsi_init_common() to be used by both internal > > virtio_scsi_init() an

[Bug 11963] S3: second resume fails unless BIOS "Intel TXT Feature" disabled - Thinkpad W500

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=11963 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

<    1   2