From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:49884) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8BFW-0006fO-9q for qemu-devel@nongnu.org; Mon, 26 Sep 2011 09:29:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R8BFQ-0006o7-9n for qemu-devel@nongnu.org; Mon, 26 Sep 2011 09:29:34 -0400 Received: from mail-iy0-f173.google.com ([209.85.210.173]:44806) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8BFQ-0006o1-4O for qemu-devel@nongnu.org; Mon, 26 Sep 2011 09:29:28 -0400 Received: by iagf6 with SMTP id f6so5488849iag.4 for ; Mon, 26 Sep 2011 06:29:27 -0700 (PDT) Message-ID: <4E807E33.3070704@codemonkey.ws> Date: Mon, 26 Sep 2011 08:29:23 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <4E7F3853.2040609@redhat.com> In-Reply-To: <4E7F3853.2040609@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL] pci_prep fix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity Cc: qemu-devel , Alexander Graf On 09/25/2011 09:18 AM, Avi Kivity wrote: > Please pull from > > git://github.com/avikivity/qemu.git memory/urgent > > to receive for a fix which kills ppc_prep immediately after launch. Pulled. Thanks. Regards, Anthony Liguori > > Avi Kivity (1): > ppc_prep: fix pci config space initialization > > hw/prep_pci.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/hw/prep_pci.c b/hw/prep_pci.c > index 55e4e25..149807a 100644 > --- a/hw/prep_pci.c > +++ b/hw/prep_pci.c > @@ -130,7 +130,7 @@ static void prep_set_irq(void *opaque, int irq_num, int level) > memory_region_add_subregion(address_space_io, 0xcf8, &s->conf_mem); > sysbus_init_ioports(&s->busdev, 0xcf8, 1); > > - memory_region_init_io(&s->conf_mem, &pci_host_data_be_ops, s, > + memory_region_init_io(&s->data_mem, &pci_host_data_be_ops, s, > "pci-conf-data", 1); > memory_region_add_subregion(address_space_io, 0xcfc, &s->data_mem); > sysbus_init_ioports(&s->busdev, 0xcfc, 1); >