From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44424) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzgDS-0008Rd-Kh for qemu-devel@nongnu.org; Wed, 25 Jun 2014 01:57:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WzgDO-0003sX-RG for qemu-devel@nongnu.org; Wed, 25 Jun 2014 01:57:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27763) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WzgDO-0003sL-IR for qemu-devel@nongnu.org; Wed, 25 Jun 2014 01:57:50 -0400 Date: Wed, 25 Jun 2014 08:58:08 +0300 From: "Michael S. Tsirkin" Message-ID: <20140625055808.GA21553@redhat.com> References: <1403661885-28619-1-git-send-email-ehabkost@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1403661885-28619-1-git-send-email-ehabkost@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 0/2] Introduce common QEMU_COMPAT_* macros List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: Peter Maydell , Marcel Apfelbaum , Alexey Kardashevskiy , qemu-devel@nongnu.org, Markus Armbruster , Paul Mackerras , Anthony Liguori , Igor Mammedov , Paolo Bonzini , Andreas =?iso-8859-1?Q?F=E4rber?= , Alexander Graf On Tue, Jun 24, 2014 at 11:04:43PM -0300, Eduardo Habkost wrote: > This series is an attempt to make the compat_props lists from the PC co= de > reusable by other machine-types. All the compat bits that are on those = lists are > not tied to a specific machine-type, but instead to the device code tha= t was > present on a given QEMU version. I applied 1/2, thanks! > This series is based on Michael's "pci" branch, and it also requires th= e > following patch to be applied first: >=20 > From: Eduardo Habkost > Date: Tue, 24 Jun 2014 19:57:55 -0300 > Message-Id: <1403650675-3368-1-git-send-email-ehabkost@redhat.com> > Subject: [PATCH] pc: Fix "prog_if" typo on PC_COMPAT_2_0 >=20 > Changes v1 -> v2: > * Move QEMU_COMPAT_* to hw/compat.h > * Eliminate machine-type-specific PC_{Q35,I440FX}_COMPAT_* macros, as = they > are not necessary today >=20 > Cc: Peter Maydell > Cc: "Michael S. Tsirkin" > Cc: Alexey Kardashevskiy > Cc: Marcel Apfelbaum > Cc: Markus Armbruster > Cc: QEMU Developers > Cc: Paul Mackerras > Cc: Anthony Liguori > Cc: Paolo Bonzini > Cc: Igor Mammedov > Cc: Andreas F=E4rber > Cc: Alexander Graf >=20 > Eduardo Habkost (2): > pc: Move q35 compat props to PC_COMPAT_* > machine: Introduce QEMU_COMPAT_* macros >=20 > hw/i386/pc_q35.c | 10 +-- > include/hw/compat.h | 210 +++++++++++++++++++++++++++++++++++++++++++= ++++ > include/hw/i386/pc.h | 225 +++----------------------------------------= -------- > 3 files changed, 226 insertions(+), 219 deletions(-) > create mode 100644 include/hw/compat.h >=20 > --=20 > 1.9.3