mbox

[PULL,00/10] virtio fixes for 2.4

Message ID 1438077261-16651-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 July 28, 2015, 9:57 a.m. UTC
The following changes since commit b69b30532e0a80e25449244c01b0cbed000c99a3:

  Update version for v2.4.0-rc2 release (2015-07-22 18:17:19 +0100)

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 c147b5153e733a14fc65d2098e7036754c185ad1:

  virtio: minor cleanup (2015-07-27 23:55:27 +0300)

----------------------------------------------------------------
virtio fixes for 2.4

Mostly virtio 1 spec compliance fixes.
We are unlikely to make it perfectly compliant in
the first release, but it seems worth it to try.

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

----------------------------------------------------------------
Gal Hammer (1):
      acpi: fix pvpanic device is not shown in ui

Jason Wang (3):
      virtio: get_features() can fail
      virtio-blk: fail get_features when both scsi and 1.0 were set
      virtio-blk: only clear VIRTIO_F_ANY_LAYOUT for legacy device

Michael S. Tsirkin (6):
      virtio: hide legacy features from modern guests
      virtio-serial: fix ANY_LAYOUT
      virtio-9p: fix any_layout
      virtio: set any_layout in virtio core
      virtio-pci: fix memory MR cleanup for modern
      virtio: minor cleanup

 include/hw/compat.h         | 22 +++++++++++++++++++++-
 include/hw/virtio/virtio.h  | 12 ++++++++++--
 hw/9pfs/virtio-9p-device.c  |  3 ++-
 hw/9pfs/virtio-9p.c         | 23 +++++++++++++++++------
 hw/block/virtio-blk.c       | 13 +++++++++++--
 hw/char/virtio-serial-bus.c |  6 ++++--
 hw/display/virtio-gpu.c     |  3 ++-
 hw/i386/acpi-build.c        |  4 ++--
 hw/input/virtio-input.c     |  3 ++-
 hw/net/virtio-net.c         |  5 ++---
 hw/scsi/vhost-scsi.c        |  3 ++-
 hw/scsi/virtio-scsi.c       |  5 ++---
 hw/virtio/virtio-balloon.c  |  3 ++-
 hw/virtio/virtio-bus.c      |  3 ++-
 hw/virtio/virtio-pci.c      | 18 +++++++++++++++++-
 hw/virtio/virtio-rng.c      |  2 +-
 16 files changed, 99 insertions(+), 29 deletions(-)

Comments

Cornelia Huck July 28, 2015, 10:39 a.m. UTC | #1
On Tue, 28 Jul 2015 12:57:29 +0300
"Michael S. Tsirkin" <mst@redhat.com> wrote:

> ----------------------------------------------------------------
> virtio fixes for 2.4
> 
> Mostly virtio 1 spec compliance fixes.
> We are unlikely to make it perfectly compliant in
> the first release, but it seems worth it to try.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> ----------------------------------------------------------------

FWIW, I think the feature bit tango in the various virtio-blk patches
is a bit confusing, but the end result looks sane. A bit wary of doing
these changes that late in the release cycle, but it survives some
light testing and seems fine for virtio-ccw revision 1 enablement as
well.
Peter Maydell July 28, 2015, 6:01 p.m. UTC | #2
On 28 July 2015 at 10:57, Michael S. Tsirkin <mst@redhat.com> wrote:
> The following changes since commit b69b30532e0a80e25449244c01b0cbed000c99a3:
>
>   Update version for v2.4.0-rc2 release (2015-07-22 18:17:19 +0100)
>
> 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 c147b5153e733a14fc65d2098e7036754c185ad1:
>
>   virtio: minor cleanup (2015-07-27 23:55:27 +0300)
>
> ----------------------------------------------------------------
> virtio fixes for 2.4
>
> Mostly virtio 1 spec compliance fixes.
> We are unlikely to make it perfectly compliant in
> the first release, but it seems worth it to try.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Applied, thanks.

-- PMM