qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/15] pc, pci, misc bugfixes
@ 2014-11-23 11:17 Michael S. Tsirkin
  2014-11-23 11:17 ` [Qemu-devel] [PULL 01/15] qemu-char: fix tcp_get_fds Michael S. Tsirkin
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Michael S. Tsirkin @ 2014-11-23 11:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Anthony Liguori

The following changes since commit 0e88f478508b566152c6681f4889ed9830a2c0a5:

  Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging (2014-11-21 14:15:37 +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 71edf5afdb320c17b28d88d848b571e2701c79b8:

  pc: acpi: mark all possible CPUs as enabled in SRAT (2014-11-23 12:12:47 +0200)

----------------------------------------------------------------
pc, pci, misc bugfixes

A bunch of bugfixes for 2.2.

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

----------------------------------------------------------------
Gonglei (2):
      pcie: fix typo in pcie_cap_deverr_init()
      pcie: fix improper use of negative value

Igor Mammedov (9):
      pc: kvm: check if KVM has free memory slots to avoid abort()
      pc: make pc_dimm_plug() more readble
      pc: limit DIMM address and size to page aligned values
      memory: expose alignment used for allocating RAM as MemoryRegion API
      pc: align DIMM's address/size by backend's alignment value
      pc: pc-dimm: use backend alignment during address auto allocation
      pc: explicitly check maxmem limit when adding DIMM
      pc: count in 1Gb hugepage alignment when sizing hotplug-memory container
      pc: acpi: mark all possible CPUs as enabled in SRAT

Marcel Apfelbaum (1):
      hw/pci: fix crash on shpc error flow

Michael S. Tsirkin (2):
      qemu-char: fix tcp_get_fds
      acpi-build: mark RAM dirty on table update

Paolo Bonzini (1):
      target-i386: move generic memory hotplug methods to DSDTs

 include/exec/exec-all.h             |   2 +-
 include/exec/memory.h               |   2 +
 include/hw/i386/pc.h                |   4 +
 include/hw/loader.h                 |   2 +-
 include/hw/mem/pc-dimm.h            |   2 +-
 include/qemu/osdep.h                |   3 +-
 include/sysemu/kvm.h                |   1 +
 exec.c                              |   9 +-
 hw/core/loader.c                    |   8 +-
 hw/i386/acpi-build.c                |  22 +-
 hw/i386/pc.c                        |  80 +++-
 hw/i386/pc_piix.c                   |   2 +
 hw/i386/pc_q35.c                    |   3 +
 hw/mem/pc-dimm.c                    |  19 +-
 hw/pci/pcie.c                       |   4 +-
 hw/pci/shpc.c                       |   1 +
 kvm-all.c                           |  18 +-
 kvm-stub.c                          |   5 +
 memory.c                            |   5 +
 qemu-char.c                         |   5 +-
 target-s390x/kvm.c                  |   2 +-
 util/oslib-posix.c                  |   5 +-
 util/oslib-win32.c                  |   2 +-
 hw/i386/acpi-dsdt-mem-hotplug.dsl   | 176 ++++++++
 hw/i386/acpi-dsdt.dsl               |   3 +-
 hw/i386/acpi-dsdt.hex.generated     | 795 +++++++++++++++++++++++++++++++++-
 hw/i386/q35-acpi-dsdt.dsl           |   3 +-
 hw/i386/q35-acpi-dsdt.hex.generated | 797 +++++++++++++++++++++++++++++++++-
 hw/i386/ssdt-mem.hex.generated      |   8 +-
 hw/i386/ssdt-misc.dsl               | 165 +------
 hw/i386/ssdt-misc.hex.generated     | 834 ++----------------------------------
 tests/acpi-test-data/pc/DSDT        | Bin 2807 -> 3592 bytes
 tests/acpi-test-data/pc/SSDT        | Bin 3065 -> 2279 bytes
 tests/acpi-test-data/q35/DSDT       | Bin 7397 -> 8182 bytes
 tests/acpi-test-data/q35/SSDT       | Bin 1346 -> 560 bytes
 35 files changed, 1962 insertions(+), 1025 deletions(-)
 create mode 100644 hw/i386/acpi-dsdt-mem-hotplug.dsl

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

end of thread, other threads:[~2014-11-24 14:17 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-23 11:17 [Qemu-devel] [PULL 00/15] pc, pci, misc bugfixes Michael S. Tsirkin
2014-11-23 11:17 ` [Qemu-devel] [PULL 01/15] qemu-char: fix tcp_get_fds Michael S. Tsirkin
2014-11-23 11:17 ` [Qemu-devel] [PULL 02/15] pc: kvm: check if KVM has free memory slots to avoid abort() Michael S. Tsirkin
2014-11-23 11:17 ` [Qemu-devel] [PULL 03/15] pc: make pc_dimm_plug() more readble Michael S. Tsirkin
2014-11-23 11:17 ` [Qemu-devel] [PULL 04/15] pc: limit DIMM address and size to page aligned values Michael S. Tsirkin
2014-11-23 11:17 ` [Qemu-devel] [PULL 05/15] memory: expose alignment used for allocating RAM as MemoryRegion API Michael S. Tsirkin
2014-11-23 11:17 ` [Qemu-devel] [PULL 06/15] pc: align DIMM's address/size by backend's alignment value Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 07/15] pc: pc-dimm: use backend alignment during address auto allocation Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 08/15] pc: explicitly check maxmem limit when adding DIMM Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 09/15] pc: count in 1Gb hugepage alignment when sizing hotplug-memory container Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 10/15] hw/pci: fix crash on shpc error flow Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 11/15] acpi-build: mark RAM dirty on table update Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 12/15] target-i386: move generic memory hotplug methods to DSDTs Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 13/15] pcie: fix typo in pcie_cap_deverr_init() Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 14/15] pcie: fix improper use of negative value Michael S. Tsirkin
2014-11-23 11:18 ` [Qemu-devel] [PULL 15/15] pc: acpi: mark all possible CPUs as enabled in SRAT Michael S. Tsirkin
2014-11-24 13:07 ` [Qemu-devel] [PULL 00/15] pc, pci, misc bugfixes Peter Maydell
2014-11-24 14:16   ` [Qemu-devel] [PATCH 08/15] fixup! pc: explicitly check maxmem limit when adding DIMM Igor Mammedov

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).