Re: [Qemu-devel] [PATCH v3 3/3] ppc: Move cpu_exec_init() call to realize function

2015-05-29 Thread Bharata B Rao
On Thu, May 28, 2015 at 10:17:25PM -0700, Peter Crosthwaite wrote: > On Wed, May 20, 2015 at 10:02 PM, Bharata B Rao > wrote: > > Move cpu_exec_init() call from instance_init to realize. This allows > > any failures from cpu_exec_init() to be handled appropriately. > > Also add corresponding cpu_e

Re: [Qemu-devel] [PATCH v3 3/3] ppc: Move cpu_exec_init() call to realize function

2015-05-28 Thread Peter Crosthwaite
On Wed, May 20, 2015 at 10:02 PM, Bharata B Rao wrote: > Move cpu_exec_init() call from instance_init to realize. This allows > any failures from cpu_exec_init() to be handled appropriately. > Also add corresponding cpu_exec_exit() call from unrealize. > > Signed-off-by: Bharata B Rao > Reviewed-

Re: [Qemu-devel] [PATCH v3 3/3] ppc: Move cpu_exec_init() call to realize function

2015-05-21 Thread Igor Mammedov
On Thu, 21 May 2015 15:48:15 +0530 Bharata B Rao wrote: > On Thu, May 21, 2015 at 11:05:19AM +0200, Igor Mammedov wrote: > > On Thu, 21 May 2015 10:32:08 +0530 > > Bharata B Rao wrote: > > > > > Move cpu_exec_init() call from instance_init to realize. This allows > > > any failures from cpu_exe

Re: [Qemu-devel] [PATCH v3 3/3] ppc: Move cpu_exec_init() call to realize function

2015-05-21 Thread Bharata B Rao
On Thu, May 21, 2015 at 11:05:19AM +0200, Igor Mammedov wrote: > On Thu, 21 May 2015 10:32:08 +0530 > Bharata B Rao wrote: > > > Move cpu_exec_init() call from instance_init to realize. This allows > > any failures from cpu_exec_init() to be handled appropriately. > > Also add corresponding cpu_e

Re: [Qemu-devel] [PATCH v3 3/3] ppc: Move cpu_exec_init() call to realize function

2015-05-21 Thread Igor Mammedov
On Thu, 21 May 2015 10:32:08 +0530 Bharata B Rao wrote: > Move cpu_exec_init() call from instance_init to realize. This allows > any failures from cpu_exec_init() to be handled appropriately. > Also add corresponding cpu_exec_exit() call from unrealize. > > Signed-off-by: Bharata B Rao > Review

Re: [Qemu-devel] [PATCH v3 3/3] ppc: Move cpu_exec_init() call to realize function

2015-05-20 Thread Bharata B Rao
On Thu, May 21, 2015 at 07:28:16AM +0200, Andreas Färber wrote: > Am 21.05.2015 um 07:02 schrieb Bharata B Rao: > > Move cpu_exec_init() call from instance_init to realize. This allows > > any failures from cpu_exec_init() to be handled appropriately. > > Also add corresponding cpu_exec_exit() call

Re: [Qemu-devel] [PATCH v3 3/3] ppc: Move cpu_exec_init() call to realize function

2015-05-20 Thread Andreas Färber
Am 21.05.2015 um 07:02 schrieb Bharata B Rao: > Move cpu_exec_init() call from instance_init to realize. This allows > any failures from cpu_exec_init() to be handled appropriately. > Also add corresponding cpu_exec_exit() call from unrealize. > > Signed-off-by: Bharata B Rao > Reviewed-by: David

[Qemu-devel] [PATCH v3 3/3] ppc: Move cpu_exec_init() call to realize function

2015-05-20 Thread Bharata B Rao
Move cpu_exec_init() call from instance_init to realize. This allows any failures from cpu_exec_init() to be handled appropriately. Also add corresponding cpu_exec_exit() call from unrealize. Signed-off-by: Bharata B Rao Reviewed-by: David Gibson --- target-ppc/translate_init.c | 9 +++-- 1