qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/9] pc, pci, virtio: fixes for rc1
@ 2017-11-16 16:40 Michael S. Tsirkin
  2017-11-16 16:40 ` [Qemu-devel] [PULL 1/9] fix: unrealize virtio device if we fail to hotplug it Michael S. Tsirkin
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Michael S. Tsirkin @ 2017-11-16 16:40 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit 6a7cb8c3d674815cab08d884740d203fded12249:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20171115' into staging (2017-11-16 12:45:14 +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 3831c07b89ab1f7aa1427bc56e9cdf70f5367933:

  tests/bios-tables-test: Fix endianess problems when passing data to iasl (2017-11-16 18:36:54 +0200)

----------------------------------------------------------------
pc, pci, virtio: fixes for rc1

A bunch of fixes all over the place.

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

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      pci: Initialize pci_dev->name before use

Dou Liyang (1):
      NUMA: Enable adding NUMA node implicitly

Marc-André Lureau (2):
      vmcoreinfo: put it in the 'misc' device category
      build-sys: restrict vmcoreinfo to fw_cfg+dma capable targets

Marcel Apfelbaum (2):
      hw/pci-host: Fix x86 Host Bridges 64bit PCI hole
      hw/pcie-pci-bridge: restrict to X86 and ARM

Michael S. Tsirkin (1):
      tests/acpi-test-data: update _CRS in DSDT

Thomas Huth (1):
      tests/bios-tables-test: Fix endianess problems when passing data to iasl

linzhecheng (1):
      fix: unrealize virtio device if we fail to hotplug it

 default-configs/arm-softmmu.mak      |   2 ++
 default-configs/i386-softmmu.mak     |   1 +
 default-configs/x86_64-softmmu.mak   |   1 +
 include/hw/boards.h                  |   1 +
 include/hw/i386/pc.h                 |  10 ++++++++-
 include/hw/pci-host/q35.h            |   1 +
 tests/acpi-utils.h                   |  27 +++++-----------------
 hw/i386/pc.c                         |  23 +++++++++++++++++++
 hw/i386/pc_piix.c                    |   1 +
 hw/i386/pc_q35.c                     |   1 +
 hw/misc/vmcoreinfo.c                 |   1 +
 hw/pci-host/piix.c                   |  32 ++++++++++++++++++++++++--
 hw/pci-host/q35.c                    |  42 ++++++++++++++++++++++++++++++++---
 hw/pci/pci.c                         |   2 +-
 hw/virtio/virtio.c                   |   1 +
 numa.c                               |  21 +++++++++++++++++-
 tests/bios-tables-test.c             |  42 ++++++++++++++++++-----------------
 tests/vmgenid-test.c                 |  22 +++++++++---------
 vl.c                                 |   3 +--
 hw/misc/Makefile.objs                |   2 +-
 hw/pci-bridge/Makefile.objs          |   4 ++--
 tests/acpi-test-data/pc/DSDT         | Bin 5098 -> 5144 bytes
 tests/acpi-test-data/pc/DSDT.bridge  | Bin 6957 -> 7003 bytes
 tests/acpi-test-data/pc/DSDT.cphp    | Bin 5561 -> 5607 bytes
 tests/acpi-test-data/pc/DSDT.ipmikcs | Bin 5170 -> 5216 bytes
 tests/acpi-test-data/pc/DSDT.memhp   | Bin 6463 -> 6509 bytes
 tests/acpi-test-data/q35/DSDT        | Bin 7782 -> 7828 bytes
 tests/acpi-test-data/q35/DSDT.bridge | Bin 7799 -> 7845 bytes
 tests/acpi-test-data/q35/DSDT.cphp   | Bin 8245 -> 8291 bytes
 tests/acpi-test-data/q35/DSDT.ipmibt | Bin 7857 -> 7903 bytes
 tests/acpi-test-data/q35/DSDT.memhp  | Bin 9147 -> 9193 bytes
 31 files changed, 175 insertions(+), 65 deletions(-)

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

end of thread, other threads:[~2017-11-17  9:25 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-16 16:40 [Qemu-devel] [PULL 0/9] pc, pci, virtio: fixes for rc1 Michael S. Tsirkin
2017-11-16 16:40 ` [Qemu-devel] [PULL 1/9] fix: unrealize virtio device if we fail to hotplug it Michael S. Tsirkin
2017-11-16 16:40 ` [Qemu-devel] [PULL 2/9] pci: Initialize pci_dev->name before use Michael S. Tsirkin
2017-11-16 16:40 ` [Qemu-devel] [PULL 3/9] hw/pci-host: Fix x86 Host Bridges 64bit PCI hole Michael S. Tsirkin
2017-11-16 16:40 ` [Qemu-devel] [PULL 4/9] hw/pcie-pci-bridge: restrict to X86 and ARM Michael S. Tsirkin
2017-11-16 16:40 ` [Qemu-devel] [PULL 5/9] tests/acpi-test-data: update _CRS in DSDT Michael S. Tsirkin
2017-11-16 16:40 ` [Qemu-devel] [PULL 6/9] NUMA: Enable adding NUMA node implicitly Michael S. Tsirkin
2017-11-16 16:50   ` Thadeu Lima de Souza Cascardo
2017-11-16 16:41 ` [Qemu-devel] [PULL 7/9] vmcoreinfo: put it in the 'misc' device category Michael S. Tsirkin
2017-11-16 16:41 ` [Qemu-devel] [PULL 8/9] build-sys: restrict vmcoreinfo to fw_cfg+dma capable targets Michael S. Tsirkin
2017-11-16 16:41 ` [Qemu-devel] [PULL 9/9] tests/bios-tables-test: Fix endianess problems when passing data to iasl Michael S. Tsirkin
2017-11-17  9:24 ` [Qemu-devel] [PULL 0/9] pc, pci, virtio: fixes for rc1 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).