From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33222) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a2xgw-0007ha-Tq for qemu-devel@nongnu.org; Sun, 29 Nov 2015 03:50:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a2xgw-0001lF-2l for qemu-devel@nongnu.org; Sun, 29 Nov 2015 03:50:42 -0500 References: From: Paolo Bonzini Message-ID: <56573913.2020407@redhat.com> Date: Thu, 26 Nov 2015 17:53:39 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] RFC: raspberry pi / pi2 / Windows-on-ARM support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Andrew Baumann , Peter Maydell , Peter Crosthwaite Cc: =?UTF-8?Q?Gr=c3=a9gory_ESTRADE?= , Stefan Weil , "qemu-devel@nongnu.org" , =?UTF-8?Q?Jan_Petrou=c5=a1?= , Sai Pavan Boddu , "qemu-arm@nongnu.org" On 25/11/2015 19:14, Andrew Baumann wrote: > How does this work out with object_property_add_alias? It can fail > and returns an error, so it should be called from realize, but it > adds a new property on the object, so the property won't be useful if > it can only be set after realize has added it. If you know it cannot fail, just pass &error_abort and call it from instance_init. Paolo