From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52807) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8Cme-0007QS-58 for qemu-devel@nongnu.org; Tue, 28 Jan 2014 12:49:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W8CmY-0004o3-6B for qemu-devel@nongnu.org; Tue, 28 Jan 2014 12:49:12 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49720) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8CmX-0004nv-Tz for qemu-devel@nongnu.org; Tue, 28 Jan 2014 12:49:06 -0500 Date: Tue, 28 Jan 2014 12:49:02 -0500 From: Luiz Capitulino Message-ID: <20140128124902.27259d5b@redhat.com> In-Reply-To: <52E7EA40.9030609@redhat.com> References: <1390930029-14697-1-git-send-email-lcapitulino@redhat.com> <1390930029-14697-4-git-send-email-lcapitulino@redhat.com> <52E7EA40.9030609@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 3/5] add optional 2nd stage initialization to -object/object-add commands List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake Cc: qemu-devel@nongnu.org, anthony@codemonkey.ws On Tue, 28 Jan 2014 10:34:56 -0700 Eric Blake wrote: > On 01/28/2014 10:27 AM, Luiz Capitulino wrote: > > From: Igor Mammedov > > > > Introduces USER_CREATABLE interface that must be implemented by > > objects which are designed to created with -object CLI option or > > object-add QMP command. > > > > > +/** > > + * UserCreatableClass: > > + * @parent_class: the base class > > + * @complete: callback to be called after @obj's properties are set. > > + * > > + * Interface is designed to work with -object/object-add/object_add > > + * commands. > > + * Interface in mandatory for objects that are designed to be user > > s/in/is/ > > > + * creatable (i.e. -object/object-add/object_add, will accept only > > + * objects that inherit this interface). > > + * > > + * iInterface also provides an optional ability to do the second > > s/iInterface/Interface/ > > > + * stage * initialization of the object after its properties were > > Spurious * I've fixed those typos and already updated my tree. Thanks Eric.