From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42748) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dIxQe-0002mv-5y for qemu-devel@nongnu.org; Thu, 08 Jun 2017 09:24:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dIxQd-0006Mj-BJ for qemu-devel@nongnu.org; Thu, 08 Jun 2017 09:24:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59050) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dIxQd-0006LT-4d for qemu-devel@nongnu.org; Thu, 08 Jun 2017 09:24:47 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 30BEE80F9E for ; Thu, 8 Jun 2017 13:24:46 +0000 (UTC) From: Juan Quintela In-Reply-To: <20170608124458.GF3628@pxdev.xzpeter.org> (Peter Xu's message of "Thu, 8 Jun 2017 20:44:58 +0800") References: <1496745042-2379-1-git-send-email-peterx@redhat.com> <1496745042-2379-3-git-send-email-peterx@redhat.com> <87k24nd78e.fsf@secure.mitica> <20170608104127.GE3628@pxdev.xzpeter.org> <87efuubun6.fsf@secure.mitica> <20170608124458.GF3628@pxdev.xzpeter.org> Reply-To: quintela@redhat.com Date: Thu, 08 Jun 2017 15:24:44 +0200 Message-ID: <87a85iboir.fsf@secure.mitica> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH 2/6] migration: move global_state.optional out List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Xu Cc: qemu-devel@nongnu.org, Markus Armbruster , Laurent Vivier , "Dr . David Alan Gilbert" Peter Xu wrote: > On Thu, Jun 08, 2017 at 01:12:29PM +0200, Juan Quintela wrote: >> Peter Xu wrote: >> > On Wed, Jun 07, 2017 at 07:42:57PM +0200, Juan Quintela wrote: ... >> >> Yeap. I *thought* that there was a way to test/set thing >> programatically also so I didn't have to create/export that functions. >> My ideal world would be that there were something like that >> >> qemu_opt_get_bool(migration_opts, "store_global_state", true); >> >> so I only have to export migration_opts (or whatever), and just set/read >> values from places like xen_init. Im my ideal world, if I have to >> create a new "property", I don't want to have to export a function to >> set/read it. For instance, the case of xen_init(). We haven't been >> able to remove global_state_set_optional() because they don't know about >> properties. >> >> I still love the patches are they are. Boing able to set things from >> the command line makes things so much better/easier O:-) > > Oh, looks like what we need to do is just export > register_compat_prop(), then xen_init() can use it. > > I'll try that tomorrow. :) Thanks, Juan.