From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XszLP-0001V4-Ta for qemu-devel@nongnu.org; Mon, 24 Nov 2014 14:30:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XszLJ-000142-OQ for qemu-devel@nongnu.org; Mon, 24 Nov 2014 14:30:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57023) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XszLJ-00013s-HT for qemu-devel@nongnu.org; Mon, 24 Nov 2014 14:30:37 -0500 Date: Mon, 24 Nov 2014 21:30:28 +0200 From: "Michael S. Tsirkin" Message-ID: <1416855830-31740-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PULL v2 00/15] pc, pci, misc bugfixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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 dd0247e09a542d2a7ba6e390c70b5616edb9ec56: pc: acpi: mark all possible CPUs as enabled in SRAT (2014-11-24 20:57:11 +0200) ---------------------------------------------------------------- pc, pci, misc bugfixes A bunch of bugfixes for 2.2. Signed-off-by: Michael S. Tsirkin ---------------------------------------------------------------- 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