mbox

[PULL,00/29] pc, virtio, misc bugfixes

Message ID 1415018633-16041-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 Nov. 3, 2014, 12:44 p.m. UTC
The following changes since commit ee29498e4f0f3eff90eeeb7f5fa1703abedd2fb6:

  Merge remote-tracking branch 'remotes/sstabellini/xen-2014-10-30' into staging (2014-10-30 20:28:09 +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 8c4a2a4ac69b3ddf3f2615969fc71b6bda67f67a:

  vga: flip qemu 2.2 pc machine types from cirrus to stdvga (2014-11-03 14:42:00 +0200)

----------------------------------------------------------------
pc, virtio, misc bugfixes

A bunch of minor bugfixes all over the place.

changes from v2:
    added cpu hotplug rework
    added default vga type switch
    more fixes
changes from v1:
    fix for test re-generation script
    add missing acks to two patches

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

----------------------------------------------------------------
Bin Wu (1):
      hw/virtio/vring/event_idx: fix the vring_avail_event error

Dr. David Alan Gilbert (1):
      -machine vmport=off: Allow disabling of VMWare ioport emulation

Eduardo Habkost (3):
      smbios: Fix assertion on socket count calculation
      pc: Add pc_compat_2_1() function
      smbios: Encode UUID according to SMBIOS specification

Gal Hammer (1):
      i386: Add an ACPI_EXTRACT_NAME_BUFFER16 directive.

Gerd Hoffmann (2):
      vga: add default display to machine class
      vga: flip qemu 2.2 pc machine types from cirrus to stdvga

Gonglei (1):
      pcie: change confused comment clearer

Gu Zheng (8):
      acpi/cpu: add cpu hotplug callback function to match hotplug_handler API
      acpi:ich9: convert cpu hotplug to hotplug_handler API
      acpi:piix4: convert cpu hotplug to hotplug_handler API
      pc: add cpu hotplug handler to PC_MACHINE
      pc: Update rtc_cmos in pc_cpu_plug
      qom/cpu: remove the unused CPU hot-plug notifier
      cpu-hotplug: rename function for better readability
      acpi/cpu-hotplug: introduce helper function to keep bit setting in one place

Jan Kiszka (1):
      pc: Fix disabling of vapic for compat PC models

Laszlo Ersek (2):
      well-defined listing order for machine types
      i386/pc: add piix and q35 machtypes to sorting families for -M \?

Marcel Apfelbaum (2):
      hw/pci: fixed error flow in pci_qdev_init
      hw/pci: fixed hotplug crash when using rombar=0 with devices having romfile

Michael S. Tsirkin (4):
      virtio-pci: fix migration for pci bus master
      intel_iommu: fix VTD_SID_TO_BUS
      qemu-char: fix tcp_get_fds
      vhost-user: fix mmap offset calculation

Nikita Belov (1):
      hw/i386/acpi-build.c: Fix memory leak in acpi_build_tables_cleanup()

Paolo Bonzini (1):
      tests: fix rebuild-expected-aml.sh for acpi-test rename

Stefan Berger (1):
      acpi: create separate file for TCPA log

 hw/virtio/virtio-pci.h                       |  5 ++
 include/hw/acpi/cpu_hotplug.h                |  7 ++-
 include/hw/acpi/ich9.h                       |  1 -
 include/hw/boards.h                          |  4 ++
 include/hw/compat.h                          | 35 +++++++++++
 include/hw/i386/intel_iommu.h                |  2 +-
 include/hw/i386/pc.h                         | 31 ++--------
 include/hw/i386/smbios.h                     | 17 +++++-
 include/sysemu/sysemu.h                      |  3 -
 hw/acpi/cpu_hotplug.c                        | 34 +++++++----
 hw/acpi/ich9.c                               | 17 ++----
 hw/acpi/piix4.c                              | 18 ++----
 hw/i386/acpi-build.c                         | 28 +++++----
 hw/i386/pc.c                                 | 86 +++++++++++++++++++++-------
 hw/i386/pc_piix.c                            | 35 ++++++++---
 hw/i386/pc_q35.c                             | 32 ++++++++---
 hw/i386/smbios.c                             | 29 ++++++++--
 hw/pci/pci.c                                 | 16 +++++-
 hw/pci/pcie.c                                |  2 +-
 hw/ppc/spapr.c                               |  7 +++
 hw/virtio/dataplane/vring.c                  |  8 +--
 hw/virtio/vhost-user.c                       |  2 +-
 hw/virtio/virtio-pci.c                       | 29 ++++------
 hw/virtio/virtio.c                           |  2 +-
 qemu-char.c                                  |  5 +-
 qom/cpu.c                                    | 10 ----
 vl.c                                         | 50 +++++++++++++++-
 qemu-options.hx                              |  3 +
 scripts/acpi_extract.py                      | 23 +++++---
 tests/acpi-test-data/rebuild-expected-aml.sh |  6 +-
 30 files changed, 370 insertions(+), 177 deletions(-)
 create mode 100644 include/hw/compat.h