mbox

[PULL,0/9] virtio,vhost,mmap fixes for 2.5

Message ID 1449088478-21099-1-git-send-email-mst@redhat.com
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

Message

Michael S. Tsirkin Dec. 2, 2015, 8:35 p.m. UTC
The following changes since commit 9d7b969ea6d9663a94760c6c131481b366f4d38a:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20151201' into staging (2015-12-02 10:16:53 +0000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

for you to fetch changes up to 203ed8d6239cdf3c1e61688259b4aa2be2de66b4:

  util/mmap-alloc: fix hugetlb support on ppc64 (2015-12-02 22:31:55 +0200)

----------------------------------------------------------------
virtio,vhost,mmap fixes for 2.5

vhost test patches to fix the travis build
virtio ccw patch to fix virtio 1
virtio pci patch to fix pci express
vhost user bridge patch to fix fd leaks
mmap-alloc patch to fix hugetlbfs on ppc64
remove dead code for vhost (trivial)

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Cornelia Huck (1):
      virtio: handle non-virtio-1-capable backend for ccw

Marc-André Lureau (3):
      vhost-user-test: fix chardriver race
      vhost-user-test: use unix port for migration
      vhost-user-test: fix crash with glib < 2.36

Michael S. Tsirkin (2):
      vhost: drop dead code
      util/mmap-alloc: fix hugetlb support on ppc64

Shmulik Ladkani (1):
      virtio-pci: Set the QEMU_PCI_CAP_EXPRESS capability early in its DeviceClass realize method

Victor Kaplansky (2):
      vhost-user: verify that number of queues is non-zero
      tests/vhost-user-bridge.c: fix fd leakage

 hw/virtio/virtio-pci.h         |  1 +
 include/hw/virtio/vhost.h      |  1 -
 include/hw/virtio/virtio-bus.h |  5 +++++
 include/qemu/mmap-alloc.h      |  2 ++
 hw/s390x/virtio-ccw.c          | 12 ++++++++++
 hw/virtio/virtio-bus.c         |  3 +++
 hw/virtio/virtio-pci.c         | 30 ++++++++++++++++++++-----
 net/vhost-user.c               |  5 +++++
 tests/vhost-user-bridge.c      | 34 +++++++++++++++++++++++-----
 tests/vhost-user-test.c        | 51 ++++++++++++++++++++++++++++++++++--------
 util/mmap-alloc.c              | 39 ++++++++++++++++++++++++++++++++
 util/oslib-posix.c             | 24 +-------------------
 12 files changed, 164 insertions(+), 43 deletions(-)

Comments

Michael S. Tsirkin Dec. 2, 2015, 8:39 p.m. UTC | #1
On Wed, Dec 02, 2015 at 10:35:18PM +0200, Michael S. Tsirkin wrote:
> The following changes since commit 9d7b969ea6d9663a94760c6c131481b366f4d38a:
> 
>   Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20151201' into staging (2015-12-02 10:16:53 +0000)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
> 
> for you to fetch changes up to 203ed8d6239cdf3c1e61688259b4aa2be2de66b4:

7197fb4058bcb68986bae2bb2c04d6370f3e7218 now as I added Rick's ack.

>   util/mmap-alloc: fix hugetlb support on ppc64 (2015-12-02 22:31:55 +0200)
> 
> ----------------------------------------------------------------
> virtio,vhost,mmap fixes for 2.5
> 
> vhost test patches to fix the travis build
> virtio ccw patch to fix virtio 1
> virtio pci patch to fix pci express
> vhost user bridge patch to fix fd leaks
> mmap-alloc patch to fix hugetlbfs on ppc64
> remove dead code for vhost (trivial)
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> ----------------------------------------------------------------
> Cornelia Huck (1):
>       virtio: handle non-virtio-1-capable backend for ccw
> 
> Marc-André Lureau (3):
>       vhost-user-test: fix chardriver race
>       vhost-user-test: use unix port for migration
>       vhost-user-test: fix crash with glib < 2.36
> 
> Michael S. Tsirkin (2):
>       vhost: drop dead code
>       util/mmap-alloc: fix hugetlb support on ppc64
> 
> Shmulik Ladkani (1):
>       virtio-pci: Set the QEMU_PCI_CAP_EXPRESS capability early in its DeviceClass realize method
> 
> Victor Kaplansky (2):
>       vhost-user: verify that number of queues is non-zero
>       tests/vhost-user-bridge.c: fix fd leakage
> 
>  hw/virtio/virtio-pci.h         |  1 +
>  include/hw/virtio/vhost.h      |  1 -
>  include/hw/virtio/virtio-bus.h |  5 +++++
>  include/qemu/mmap-alloc.h      |  2 ++
>  hw/s390x/virtio-ccw.c          | 12 ++++++++++
>  hw/virtio/virtio-bus.c         |  3 +++
>  hw/virtio/virtio-pci.c         | 30 ++++++++++++++++++++-----
>  net/vhost-user.c               |  5 +++++
>  tests/vhost-user-bridge.c      | 34 +++++++++++++++++++++++-----
>  tests/vhost-user-test.c        | 51 ++++++++++++++++++++++++++++++++++--------
>  util/mmap-alloc.c              | 39 ++++++++++++++++++++++++++++++++
>  util/oslib-posix.c             | 24 +-------------------
>  12 files changed, 164 insertions(+), 43 deletions(-)
>
Peter Maydell Dec. 3, 2015, 10:43 a.m. UTC | #2
On 2 December 2015 at 20:39, Michael S. Tsirkin <mst@redhat.com> wrote:
> On Wed, Dec 02, 2015 at 10:35:18PM +0200, Michael S. Tsirkin wrote:
>> The following changes since commit 9d7b969ea6d9663a94760c6c131481b366f4d38a:
>>
>>   Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20151201' into staging (2015-12-02 10:16:53 +0000)
>>
>> are available in the git repository at:
>>
>>   git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
>>
>> for you to fetch changes up to 203ed8d6239cdf3c1e61688259b4aa2be2de66b4:
>
> 7197fb4058bcb68986bae2bb2c04d6370f3e7218 now as I added Rick's ack.
>
>>   util/mmap-alloc: fix hugetlb support on ppc64 (2015-12-02 22:31:55 +0200)
>>
>> ----------------------------------------------------------------
>> virtio,vhost,mmap fixes for 2.5
>>
>> vhost test patches to fix the travis build
>> virtio ccw patch to fix virtio 1
>> virtio pci patch to fix pci express
>> vhost user bridge patch to fix fd leaks
>> mmap-alloc patch to fix hugetlbfs on ppc64
>> remove dead code for vhost (trivial)
>>
>> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>>
>> ----------------------------------------------------------------

Applied, thanks.

-- PMM