From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53631) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TCPvf-000233-BN for qemu-devel@nongnu.org; Fri, 14 Sep 2012 03:03:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TCPvY-0008Sj-TD for qemu-devel@nongnu.org; Fri, 14 Sep 2012 03:03:07 -0400 Received: from mail-wg0-f53.google.com ([74.125.82.53]:48580) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TCPvY-0008SV-NW for qemu-devel@nongnu.org; Fri, 14 Sep 2012 03:03:00 -0400 Received: by wgbdr1 with SMTP id dr1so304730wgb.10 for ; Fri, 14 Sep 2012 00:02:59 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <5052D69F.5070408@redhat.com> Date: Fri, 14 Sep 2012 09:02:55 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 11/25] q35: Introduce q35 pc based chipset emulator List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jason Baron Cc: aliguori@us.ibm.com, juzhang@redhat.com, mst@redhat.com, jan.kiszka@siemens.com, qemu-devel@nongnu.org, agraf@suse.de, yamahata@valinux.co.jp, alex.williamson@redhat.com, kevin@koconnor.net, avi@redhat.com, mkletzan@redhat.com, lcapitulino@redhat.com, afaerber@suse.de, armbru@redhat.com Il 13/09/2012 22:12, Jason Baron ha scritto: > +typedef struct ICH9_LPCIrqState { > + struct ICH9_LPCState *lpc; Please add DEFINE_PROP_PTR property for this field in gmch_pcihost_info, so we know this ought to become a link later. > + qemu_irq *pic; > + qemu_irq *ioapic; > +} ICH9_LPCIrqState; > + Paolo