[Qemu-devel] [PATCH 3/4] QError: Don't abort on multiple faults

2010-02-08 Thread Luiz Capitulino
Ideally, Monitor code should report an error only once and return the error information up the call chain. To assure that this happens as expected and that no error is lost, we have an assert() in qemu_error_internal(). However, we still have not fully converted handlers using monitor_printf() to

Re: [Qemu-devel] [PATCH 3/4] QError: Don't abort on multiple faults

2010-02-05 Thread Luiz Capitulino
On Fri, 05 Feb 2010 16:15:56 +0100 Markus Armbruster wrote: > Luiz Capitulino writes: > > > On Fri, 05 Feb 2010 15:21:13 +0100 > > Markus Armbruster wrote: > > > >> Markus Armbruster writes: > >> > >> > Luiz Capitulino writes: > >> > > >> >> Ideally, Monitor code should report an error only

Re: [Qemu-devel] [PATCH 3/4] QError: Don't abort on multiple faults

2010-02-05 Thread Markus Armbruster
Luiz Capitulino writes: > On Fri, 05 Feb 2010 15:21:13 +0100 > Markus Armbruster wrote: > >> Markus Armbruster writes: >> >> > Luiz Capitulino writes: >> > >> >> Ideally, Monitor code should report an error only once and >> >> return the error information up the call chain. >> >> >> >> To ass

Re: [Qemu-devel] [PATCH 3/4] QError: Don't abort on multiple faults

2010-02-05 Thread Luiz Capitulino
On Fri, 05 Feb 2010 15:21:13 +0100 Markus Armbruster wrote: > Markus Armbruster writes: > > > Luiz Capitulino writes: > > > >> Ideally, Monitor code should report an error only once and > >> return the error information up the call chain. > >> > >> To assure that this happens as expected and t

Re: [Qemu-devel] [PATCH 3/4] QError: Don't abort on multiple faults

2010-02-05 Thread Markus Armbruster
Markus Armbruster writes: > Luiz Capitulino writes: > >> Ideally, Monitor code should report an error only once and >> return the error information up the call chain. >> >> To assure that this happens as expected and that no error is >> lost, we have an assert() in qemu_error_internal(). >> >> H

Re: [Qemu-devel] [PATCH 3/4] QError: Don't abort on multiple faults

2010-02-05 Thread Markus Armbruster
Luiz Capitulino writes: > Ideally, Monitor code should report an error only once and > return the error information up the call chain. > > To assure that this happens as expected and that no error is > lost, we have an assert() in qemu_error_internal(). > > However, we still have not fully conver

[Qemu-devel] [PATCH 3/4] QError: Don't abort on multiple faults

2010-02-04 Thread Luiz Capitulino
Ideally, Monitor code should report an error only once and return the error information up the call chain. To assure that this happens as expected and that no error is lost, we have an assert() in qemu_error_internal(). However, we still have not fully converted handlers using monitor_printf() to