From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:37565) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rs8UD-0005uF-4I for qemu-devel@nongnu.org; Tue, 31 Jan 2012 02:50:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rs8UB-0005hv-Sy for qemu-devel@nongnu.org; Tue, 31 Jan 2012 02:50:41 -0500 Received: from mail-gy0-f173.google.com ([209.85.160.173]:61900) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rs8UB-0005hp-QM for qemu-devel@nongnu.org; Tue, 31 Jan 2012 02:50:39 -0500 Received: by ghrr20 with SMTP id r20so2071488ghr.4 for ; Mon, 30 Jan 2012 23:50:39 -0800 (PST) Sender: Paolo Bonzini Message-ID: <4F279D4B.6040704@redhat.com> Date: Tue, 31 Jan 2012 08:50:35 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1327957741-5842-1-git-send-email-aliguori@us.ibm.com> <1327957741-5842-22-git-send-email-aliguori@us.ibm.com> In-Reply-To: <1327957741-5842-22-git-send-email-aliguori@us.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 22/23] container: make a decendent of Object List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Peter Maydell , Andreas Faerber , qemu-devel@nongnu.org On 01/30/2012 10:09 PM, Anthony Liguori wrote: > diff --git a/qom/container.c b/qom/container.c > new file mode 100644 > index 0000000..39d7b1e > --- /dev/null > +++ b/qom/container.c > @@ -0,0 +1,15 @@ > +#include "qemu/object.h" > +#include "module.h" > + > +static TypeInfo container_info = { > + .name = "container", > + .instance_size = sizeof(Object), > + .parent = TYPE_OBJECT, > +}; > + License header, please. (GPLv2+ or LGPLv2+?) Paolo