From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:37519) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8Cxu-0000Ma-GR for qemu-devel@nongnu.org; Mon, 26 Sep 2011 11:19:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R8Cxt-0003k6-82 for qemu-devel@nongnu.org; Mon, 26 Sep 2011 11:19:30 -0400 Received: from fmmailgate01.web.de ([217.72.192.221]:33527) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8Cxs-0003jo-Pp for qemu-devel@nongnu.org; Mon, 26 Sep 2011 11:19:29 -0400 Message-ID: <4E8097F2.4090505@web.de> Date: Mon, 26 Sep 2011 17:19:14 +0200 From: =?UTF-8?B?QW5kcmVhcyBGw6RyYmVy?= MIME-Version: 1.0 References: <4E7F3853.2040609@redhat.com> In-Reply-To: <4E7F3853.2040609@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: andreas.faerber@web.de 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 Am 25.09.2011 16:18, schrieb Avi Kivity: > Please pull from > > git://github.com/avikivity/qemu.git memory/urgent > > to receive for a fix which kills ppc_prep immediately after launch. > > 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); Thanks for spotting that, Andreas