From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46620) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxFfc-000135-5l for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:08:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxFfY-0002Xh-Ep for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:08:24 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50110) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxFfY-0002XU-6v for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:08:20 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6BC8JQ9029902 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 11 Jul 2013 08:08:19 -0400 Received: from redhat.com (vpn1-7-228.ams2.redhat.com [10.36.7.228]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id r6BC8Ibw008162 for ; Thu, 11 Jul 2013 08:08:18 -0400 Date: Thu, 11 Jul 2013 15:09:35 +0300 From: "Michael S. Tsirkin" Message-ID: <20130711120935.GA25706@redhat.com> References: <1373544219-25608-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1373544219-25608-1-git-send-email-mst@redhat.com> Subject: Re: [Qemu-devel] [PATCH v2 0/2] acpi hotplug of devices behind a bridge List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Thu, Jul 11, 2013 at 03:03:58PM +0300, Michael S. Tsirkin wrote: > This is on top of patchset generating ACPI tables in qemu. > Changes from v1: > - fixed some bugs > - fixed migration and cross version compatibility > - rebased to latest bits Naturally, as I address review comments for the base patchset this will be rebased too. > Michael S. Tsirkin (2): > pci: add pci_for_each_bus > qemu: piix: PCI bridge ACPI hotplug support > > docs/specs/acpi_pci_hotplug.txt | 8 + > hw/acpi/piix4.c | 217 +++++++++++++++----- > hw/i386/Makefile.objs | 2 +- > hw/i386/acpi-build.c | 425 +++++++++++++++++++++++++++++++++++---- > hw/i386/acpi-dsdt.dsl | 36 +++- > hw/i386/pc_piix.c | 3 + > hw/i386/ssdt-pcihp.dsl | 51 ----- > hw/i386/ssdt-pcihp.hex.generated | 108 ---------- > hw/pci/pci.c | 17 ++ > include/hw/i386/pc.h | 5 +- > include/hw/pci/pci.h | 3 + > 11 files changed, 607 insertions(+), 268 deletions(-) > delete mode 100644 hw/i386/ssdt-pcihp.dsl > delete mode 100644 hw/i386/ssdt-pcihp.hex.generated > > -- > MST >