qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/19] virtio, pc: fixes and features
@ 2016-09-23 22:04 Michael S. Tsirkin
  2016-09-23 22:04 ` [Qemu-devel] [PULL v2 01/19] tests: add /vhost-user/connect-fail test Michael S. Tsirkin
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: Michael S. Tsirkin @ 2016-09-23 22:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit eaff9c4367ac3f7ac44f6c6f4cb7bcd4daa89af5:

  Merge remote-tracking branch 'remotes/lalrae/tags/mips-20160923' into staging (2016-09-23 15:28:07 +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 fb9f592623b0f9bb82a88d68d7921fb581918ef5:

  hw/i386: AMD IOMMU IVRS table (2016-09-24 01:02:01 +0300)

changes since v1:
    fixed a build failure due to a duplicate typedef
    which trips up older gccs

----------------------------------------------------------------
virtio, pc: fixes and features

beginning of guest error handling for virtio devices
amd iommu
pc compat fixes

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

----------------------------------------------------------------
David Kiarie (4):
      hw/pci: Prepare for AMD IOMMU
      hw/i386/trace-events: Add AMD IOMMU trace events
      hw/i386: Introduce AMD IOMMU
      hw/i386: AMD IOMMU IVRS table

Igor Mammedov (2):
      pc: clean up COMPAT macro chaining
      target-i386: turn off CPU.l3-cache only for 2.7 and older machine types

Marc-André Lureau (3):
      tests: add /vhost-user/connect-fail test
      tests: add a simple /vhost-user/multiqueue test
      tests: add /vhost-user/flags-mismatch test

Prasad J Pandit (1):
      virtio: add check for descriptor's mapped address

Stefan Hajnoczi (9):
      virtio: fix stray tab character
      virtio: stop virtqueue processing if device is broken
      virtio: migrate vdev->broken flag
      virtio: handle virtqueue_map_desc() errors
      virtio: handle virtqueue_get_avail_bytes() errors
      virtio: use unsigned int for virtqueue_get_avail_bytes() index
      virtio: handle virtqueue_read_next_desc() errors
      virtio: handle virtqueue_num_heads() errors
      virtio: handle virtqueue_get_head() errors

 hw/i386/amd_iommu.h         |  289 +++++++++++
 include/hw/acpi/aml-build.h |    1 +
 include/hw/i386/pc.h        |    9 +-
 include/hw/i386/x86-iommu.h |   12 +
 include/hw/pci/pci.h        |    3 +
 include/hw/virtio/virtio.h  |    3 +
 hw/acpi/aml-build.c         |    2 +-
 hw/i386/acpi-build.c        |   76 ++-
 hw/i386/amd_iommu.c         | 1202 +++++++++++++++++++++++++++++++++++++++++++
 hw/i386/intel_iommu.c       |    1 +
 hw/i386/x86-iommu.c         |    6 +
 hw/virtio/virtio.c          |  237 +++++++--
 tests/vhost-user-test.c     |  208 +++++++-
 hw/i386/Makefile.objs       |    1 +
 hw/i386/trace-events        |   29 ++
 tests/Makefile.include      |    2 +-
 16 files changed, 2009 insertions(+), 72 deletions(-)
 create mode 100644 hw/i386/amd_iommu.h
 create mode 100644 hw/i386/amd_iommu.c

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2016-09-26 19:59 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-23 22:04 [Qemu-devel] [PULL v2 00/19] virtio, pc: fixes and features Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 01/19] tests: add /vhost-user/connect-fail test Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 02/19] tests: add a simple /vhost-user/multiqueue test Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 03/19] tests: add /vhost-user/flags-mismatch test Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 04/19] virtio: add check for descriptor's mapped address Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 05/19] pc: clean up COMPAT macro chaining Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 06/19] target-i386: turn off CPU.l3-cache only for 2.7 and older machine types Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 07/19] virtio: fix stray tab character Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 08/19] virtio: stop virtqueue processing if device is broken Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 09/19] virtio: migrate vdev->broken flag Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 10/19] virtio: handle virtqueue_map_desc() errors Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 11/19] virtio: handle virtqueue_get_avail_bytes() errors Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 12/19] virtio: use unsigned int for virtqueue_get_avail_bytes() index Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 13/19] virtio: handle virtqueue_read_next_desc() errors Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 14/19] virtio: handle virtqueue_num_heads() errors Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 15/19] virtio: handle virtqueue_get_head() errors Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 16/19] hw/pci: Prepare for AMD IOMMU Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 17/19] hw/i386/trace-events: Add AMD IOMMU trace events Michael S. Tsirkin
2016-09-23 22:04 ` [Qemu-devel] [PULL v2 18/19] hw/i386: Introduce AMD IOMMU Michael S. Tsirkin
2016-09-23 22:05 ` [Qemu-devel] [PULL v2 19/19] hw/i386: AMD IOMMU IVRS table Michael S. Tsirkin
2016-09-23 22:32 ` [Qemu-devel] [PULL v2 00/19] virtio, pc: fixes and features no-reply
2016-09-26 19:59 ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).