Re: [Qemu-devel] [RFC PATCH] trace: Replace error with warning if event is not defined

2014-05-28 Thread Lluís Vilanova
Alexey Kardashevskiy writes: > On 05/28/2014 10:34 PM, Lluís Vilanova wrote: >> Stefan Hajnoczi writes: >> >>> On Wed, May 21, 2014 at 06:16:01PM +1000, Alexey Kardashevskiy wrote: At the moment QEMU exits if trace point is not defined which makes a developer life harder if he has to sw

Re: [Qemu-devel] [RFC PATCH] trace: Replace error with warning if event is not defined

2014-05-28 Thread Alexey Kardashevskiy
On 05/28/2014 10:34 PM, Lluís Vilanova wrote: > Stefan Hajnoczi writes: > >> On Wed, May 21, 2014 at 06:16:01PM +1000, Alexey Kardashevskiy wrote: >>> At the moment QEMU exits if trace point is not defined which makes >>> a developer life harder if he has to switch between branches with >>> differ

Re: [Qemu-devel] [RFC PATCH] trace: Replace error with warning if event is not defined

2014-05-28 Thread Lluís Vilanova
Stefan Hajnoczi writes: > On Wed, May 21, 2014 at 06:16:01PM +1000, Alexey Kardashevskiy wrote: >> At the moment QEMU exits if trace point is not defined which makes >> a developer life harder if he has to switch between branches with >> different traces implemented. >> >> This replaces error+exi

Re: [Qemu-devel] [RFC PATCH] trace: Replace error with warning if event is not defined

2014-05-28 Thread Stefan Hajnoczi
On Wed, May 21, 2014 at 06:16:01PM +1000, Alexey Kardashevskiy wrote: > At the moment QEMU exits if trace point is not defined which makes > a developer life harder if he has to switch between branches with > different traces implemented. > > This replaces error+exit wit WARNING if the tracepoint

Re: [Qemu-devel] [RFC PATCH] trace: Replace error with warning if event is not defined

2014-05-27 Thread Lluís Vilanova
Alexey Kardashevskiy writes: > On 05/21/2014 06:16 PM, Alexey Kardashevskiy wrote: >> At the moment QEMU exits if trace point is not defined which makes >> a developer life harder if he has to switch between branches with >> different traces implemented. >> >> This replaces error+exit wit WARNING

Re: [Qemu-devel] [RFC PATCH] trace: Replace error with warning if event is not defined

2014-05-26 Thread Markus Armbruster
Copying Stefan. scripts/get_maintainer.pl would've told you so :) Alexey Kardashevskiy writes: > At the moment QEMU exits if trace point is not defined which makes > a developer life harder if he has to switch between branches with > different traces implemented. > > This replaces error+exit wi

Re: [Qemu-devel] [RFC PATCH] trace: Replace error with warning if event is not defined

2014-05-26 Thread Alexey Kardashevskiy
On 05/21/2014 06:16 PM, Alexey Kardashevskiy wrote: > At the moment QEMU exits if trace point is not defined which makes > a developer life harder if he has to switch between branches with > different traces implemented. > > This replaces error+exit wit WARNING if the tracepoint does not exist or

[Qemu-devel] [RFC PATCH] trace: Replace error with warning if event is not defined

2014-05-21 Thread Alexey Kardashevskiy
At the moment QEMU exits if trace point is not defined which makes a developer life harder if he has to switch between branches with different traces implemented. This replaces error+exit wit WARNING if the tracepoint does not exist or not traceable. Signed-off-by: Alexey Kardashevskiy --- Tha