From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:39600) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qy3CR-0002XX-Bi for qemu-devel@nongnu.org; Mon, 29 Aug 2011 10:52:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qy3CL-0000pw-RE for qemu-devel@nongnu.org; Mon, 29 Aug 2011 10:52:31 -0400 Received: from mail-gw0-f45.google.com ([74.125.83.45]:55673) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qy3CL-0000po-Np for qemu-devel@nongnu.org; Mon, 29 Aug 2011 10:52:25 -0400 Received: by gwb19 with SMTP id 19so5529847gwb.4 for ; Mon, 29 Aug 2011 07:52:25 -0700 (PDT) Message-ID: <4E5BA7A5.5080008@codemonkey.ws> Date: Mon, 29 Aug 2011 09:52:21 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <4E5A60C1.3050900@redhat.com> In-Reply-To: <4E5A60C1.3050900@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL] sh_pci fix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity Cc: qemu-devel On 08/28/2011 10:37 AM, Avi Kivity wrote: > Anthony, please pull from > > git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git memory/urgent > > to receive a fix for boundless recursion in the sh target, due to a bug > in the memory API conversion. Pulled. Thanks. Regards, Anthony Liguori > > Avi Kivity (1): > sh_pci: Fix sh_pci memory alias confusion > > hw/sh_pci.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/hw/sh_pci.c b/hw/sh_pci.c > index 76061bb..36f3930 100644 > --- a/hw/sh_pci.c > +++ b/hw/sh_pci.c > @@ -150,7 +150,7 @@ static int sh_pci_init_device(SysBusDevice *dev) > PCI_DEVFN(0, 0), 4); > memory_region_init_io(&s->memconfig_p4, &sh_pci_reg_ops, s, > "sh_pci", 0x224); > - memory_region_init_alias(&s->memconfig_a7, "sh_pci.2", &s->memconfig_a7, > + memory_region_init_alias(&s->memconfig_a7, "sh_pci.2", &s->memconfig_p4, > 0, 0x224); > isa_mmio_setup(&s->isa, 0x40000); > sysbus_init_mmio_cb2(dev, sh_pci_map, sh_pci_unmap); >