mbox

[PULL,00/16] pci, pc, virtio fixes and cleanups

Message ID 1422364369-8667-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 Jan. 27, 2015, 1:13 p.m. UTC
The following changes since commit 1e42c353469cb58ca4f3b450eea4211af7d0b147:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20150116' into staging (2015-01-16 12:06:41 +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 37153450436f58449ce7e41d13a23821611e889e:

  pc-dimm: Add Error argument to pc_existing_dimms_capacity (2015-01-27 14:46:18 +0200)

----------------------------------------------------------------
pci, pc, virtio fixes and cleanups

A bunch of fixes all over the place.  Also, beginning to generalize acpi build
code for reuse by ARM.

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

----------------------------------------------------------------
Alexander Graf (1):
      pci: Split pcie_host_mmcfg_map()

Amit Shah (1):
      ich9: add disable_s3, disable_s4, s4_val properties

Bharata B Rao (3):
      pc: Fix DIMMs capacity calculation
      pc-dimm: Make pc_existing_dimms_capacity global
      pc-dimm: Add Error argument to pc_existing_dimms_capacity

Cornelia Huck (1):
      virtio: fix feature bit checks

Don Koch (1):
      Add some trace calls to pci.c.

Eduardo Habkost (2):
      smbios: Fix dimm size calculation when RAM is multiple of 16GB
      smbios: Don't report unknown CPU speed (fix SVVP regression)

Igor Mammedov (2):
      pc: acpi: fix WindowsXP BSOD when memory hotplug is enabled
      acpi: build_append_nameseg(): add padding if necessary

Michael S. Tsirkin (4):
      acpi-test: update expected DSDT
      acpi: update generated hex files
      bios-linker-loader: move header to common location
      bios-linker-loader: move source to common location

Paolo Bonzini (1):
      bios-tables-test: split piix4 and q35 tests

 {hw/i386 => include/hw/acpi}/bios-linker-loader.h |   0
 include/hw/acpi/ich9.h                            |   4 +
 include/hw/mem/pc-dimm.h                          |   1 +
 include/hw/pci/pcie_host.h                        |   1 +
 hw/{i386 => acpi}/bios-linker-loader.c            |   2 +-
 hw/acpi/ich9.c                                    |  98 +++++++++++++++++++++-
 hw/i386/acpi-build.c                              |  17 ++--
 hw/i386/pc.c                                      |  40 ++-------
 hw/i386/smbios.c                                  |   8 +-
 hw/mem/pc-dimm.c                                  |  37 ++++++++
 hw/pci/pci.c                                      |   9 ++
 hw/pci/pcie_host.c                                |   9 +-
 hw/scsi/virtio-scsi.c                             |   2 +-
 hw/virtio/dataplane/vring.c                       |   4 +-
 tests/bios-tables-test.c                          |  10 ++-
 hw/acpi/Makefile.objs                             |   1 +
 hw/i386/Makefile.objs                             |   1 -
 hw/i386/acpi-dsdt-cpu-hotplug.dsl                 |   1 +
 hw/i386/acpi-dsdt.hex.generated                   |  43 ++++++++--
 hw/i386/q35-acpi-dsdt.hex.generated               |  45 ++++++++--
 tests/acpi-test-data/pc/DSDT                      | Bin 3592 -> 3621 bytes
 tests/acpi-test-data/q35/DSDT                     | Bin 8182 -> 8211 bytes
 tests/acpi-test-data/q35/SSDT                     | Bin 560 -> 560 bytes
 trace-events                                      |   4 +
 24 files changed, 268 insertions(+), 69 deletions(-)
 rename {hw/i386 => include/hw/acpi}/bios-linker-loader.h (100%)
 rename hw/{i386 => acpi}/bios-linker-loader.c (99%)

Comments

Peter Maydell Jan. 27, 2015, 3:52 p.m. UTC | #1
On 27 January 2015 at 13:13, Michael S. Tsirkin <mst@redhat.com> wrote:
> The following changes since commit 1e42c353469cb58ca4f3b450eea4211af7d0b147:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20150116' into staging (2015-01-16 12:06:41 +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 37153450436f58449ce7e41d13a23821611e889e:
>
>   pc-dimm: Add Error argument to pc_existing_dimms_capacity (2015-01-27 14:46:18 +0200)
>
> ----------------------------------------------------------------
> pci, pc, virtio fixes and cleanups
>
> A bunch of fixes all over the place.  Also, beginning to generalize acpi build
> code for reuse by ARM.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Applied, thanks.

-- PMM