From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45330) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9FOZ-00075P-Mv for qemu-devel@nongnu.org; Tue, 13 Aug 2013 10:16:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V9FOQ-0006x6-Vq for qemu-devel@nongnu.org; Tue, 13 Aug 2013 10:16:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:65282) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9FOQ-0006x0-Ot for qemu-devel@nongnu.org; Tue, 13 Aug 2013 10:16:14 -0400 Date: Tue, 13 Aug 2013 17:17:49 +0300 From: "Michael S. Tsirkin" Message-ID: <20130813141749.GA29184@redhat.com> References: <1376402951-3620-1-git-send-email-aliguori@us.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1376402951-3620-1-git-send-email-aliguori@us.ibm.com> Subject: Re: [Qemu-devel] [PATCH] pvpanic: fix bad merge List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, Markus Armbruster On Tue, Aug 13, 2013 at 09:09:11AM -0500, Anthony Liguori wrote: > Context matching caused the 'has_pvpanic = true' to be applied to > the 1.6 machine type instead of the 1.5 machine type. > > Reported-by: Markus Armbruster > Reported-by: Michael S. Tsirkin > Signed-off-by: Anthony Liguori Reviewed-by: Michael S. Tsirkin > --- > hw/i386/pc_piix.c | 2 +- > hw/i386/pc_q35.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c > index 55c24f2..6e1e654 100644 > --- a/hw/i386/pc_piix.c > +++ b/hw/i386/pc_piix.c > @@ -252,12 +252,12 @@ static void pc_init_pci(QEMUMachineInitArgs *args) > static void pc_init_pci_1_6(QEMUMachineInitArgs *args) > { > has_pci_info = false; > - has_pvpanic = true; > pc_init_pci(args); > } > > static void pc_init_pci_1_5(QEMUMachineInitArgs *args) > { > + has_pvpanic = true; > pc_init_pci_1_6(args); > } > > diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c > index bd25071..10e770e 100644 > --- a/hw/i386/pc_q35.c > +++ b/hw/i386/pc_q35.c > @@ -221,12 +221,12 @@ static void pc_q35_init(QEMUMachineInitArgs *args) > static void pc_q35_init_1_6(QEMUMachineInitArgs *args) > { > has_pci_info = false; > - has_pvpanic = true; > pc_q35_init(args); > } > > static void pc_q35_init_1_5(QEMUMachineInitArgs *args) > { > + has_pvpanic = true; > pc_q35_init_1_6(args); > } > > -- > 1.8.0