mbox

[PULL,00/15] pci, virtio, acpi: fixes for 2.6

Message ID 1460102154-16096-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 April 8, 2016, 8:02 a.m. UTC
The following changes since commit 7acbff99c6c285b3070bf0e768d56f511e2bf346:

  Update version for v2.6.0-rc1 release (2016-04-05 21:53:18 +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 2e4278b534997d8f33a6e8b7923c168f5e5c89c7:

  hw/pci-bridge: Add missing unref in case register-bus fails (2016-04-07 19:57:33 +0300)

----------------------------------------------------------------
pci, virtio, acpi: fixes for 2.6

Fixes all over the place. Most notably, fixes migration
for systems with pci express bridges, and random crashes
observed with virtio blk and scsi dataplane.

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

----------------------------------------------------------------
Dr. David Alan Gilbert (1):
      Migration: Add i82801b11 migration data

Gerd Hoffmann (1):
      Sort the fw_cfg file list

Marcel Apfelbaum (1):
      tests/bios-tables-test: fix assert

Michael S. Tsirkin (4):
      pci-testdev: fast mmio support
      xen: piix reuse pci generic class init function
      virtio: add aio handler
      virtio-blk: use aio handler for data plane

Paolo Bonzini (5):
      virtio: make virtio_queue_notify_vq static
      virtio-blk: fix disabled mode
      virtio-scsi: fix disabled mode
      virtio-scsi: use aio handler for data plane
      virtio: merge virtio_queue_aio_set_host_notifier_handler with virtio_queue_set_aio

Pavel Butsykin (1):
      virtio-balloon: reset the statistic timer to load device

Stefan Weil (1):
      acpi: Add missing GCC_FMT_ATTR

Wei Jiangang (1):
      hw/pci-bridge: Add missing unref in case register-bus fails

 include/hw/acpi/aml-build.h         |   3 +-
 include/hw/boards.h                 |   3 +-
 include/hw/loader.h                 |   2 +
 include/hw/nvram/fw_cfg.h           |   8 +++
 include/hw/virtio/virtio-blk.h      |   3 +
 include/hw/virtio/virtio-scsi.h     |   7 +-
 include/hw/virtio/virtio.h          |   4 +-
 hw/block/dataplane/virtio-blk.c     |  23 +++++--
 hw/block/virtio-blk.c               |  29 +++++---
 hw/core/loader.c                    |  14 ++++
 hw/i386/pc.c                        |   4 ++
 hw/i386/pc_piix.c                   |   1 +
 hw/i386/pc_q35.c                    |   1 +
 hw/ide/piix.c                       |  14 +---
 hw/misc/pci-testdev.c               |   7 +-
 hw/nvram/fw_cfg.c                   | 131 +++++++++++++++++++++++++++++++++---
 hw/pci-bridge/i82801b11.c           |   9 +++
 hw/pci-bridge/pci_expander_bridge.c |   8 ++-
 hw/scsi/virtio-scsi-dataplane.c     |  47 ++++++++++---
 hw/scsi/virtio-scsi.c               |  69 ++++++++++++-------
 hw/virtio/virtio-balloon.c          |   4 ++
 hw/virtio/virtio.c                  |  39 ++++++++---
 tests/bios-tables-test.c            |   2 +-
 vl.c                                |  10 ++-
 tests/Makefile                      |   2 +-
 25 files changed, 352 insertions(+), 92 deletions(-)

Comments

Peter Maydell April 8, 2016, 12:45 p.m. UTC | #1
On 8 April 2016 at 09:02, Michael S. Tsirkin <mst@redhat.com> wrote:
> The following changes since commit 7acbff99c6c285b3070bf0e768d56f511e2bf346:
>
>   Update version for v2.6.0-rc1 release (2016-04-05 21:53:18 +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 2e4278b534997d8f33a6e8b7923c168f5e5c89c7:
>
>   hw/pci-bridge: Add missing unref in case register-bus fails (2016-04-07 19:57:33 +0300)
>
> ----------------------------------------------------------------
> pci, virtio, acpi: fixes for 2.6
>
> Fixes all over the place. Most notably, fixes migration
> for systems with pci express bridges, and random crashes
> observed with virtio blk and scsi dataplane.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM