From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46836) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UbreB-00070c-TT for qemu-devel@nongnu.org; Mon, 13 May 2013 08:14:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UbreA-0001Yf-Dl for qemu-devel@nongnu.org; Mon, 13 May 2013 08:14:31 -0400 Received: from mail-gh0-f174.google.com ([209.85.160.174]:45383) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UbreA-0001Yb-9J for qemu-devel@nongnu.org; Mon, 13 May 2013 08:14:30 -0400 Received: by mail-gh0-f174.google.com with SMTP id r17so64808ghr.33 for ; Mon, 13 May 2013 05:14:29 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <5190D921.6040107@redhat.com> Date: Mon, 13 May 2013 14:14:25 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1368442465-14363-1-git-send-email-david@gibson.dropbear.id.au> <1368442465-14363-2-git-send-email-david@gibson.dropbear.id.au> In-Reply-To: <1368442465-14363-2-git-send-email-david@gibson.dropbear.id.au> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/8] iommu: Fix compile error in ioapic.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Gibson Cc: aik@ozlabs.ru, alex.williamson@redhat.com, mst@redhat.com, qemu-devel@nongnu.org, agraf@suse.de Il 13/05/2013 12:54, David Gibson ha scritto: > The iommu tree introduced a build bug into hw/i386/kvm/ioapic.c. Looks > like a messed up copy and paste. > > Signed-off-by: David Gibson > --- > hw/i386/kvm/ioapic.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/i386/kvm/ioapic.c b/hw/i386/kvm/ioapic.c > index e3c29da..fe24d26 100644 > --- a/hw/i386/kvm/ioapic.c > +++ b/hw/i386/kvm/ioapic.c > @@ -108,7 +108,7 @@ static void kvm_ioapic_put(IOAPICCommonState *s) > abort(); > } > > - memory_region_unref(mrs.mr); > + memory_region_unref(&s->io_memory); > } > > static void kvm_ioapic_reset(DeviceState *dev) > Squashed, thanks. Paolo