[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PULL 05/13] trace: split trace_init_file out of trace_
From: |
Alex Bennée |
Subject: |
Re: [Qemu-devel] [PULL 05/13] trace: split trace_init_file out of trace_init_backends |
Date: |
Tue, 09 Feb 2016 12:28:27 +0000 |
User-agent: |
mu4e 0.9.17; emacs 25.0.90.4 |
Denis V. Lunev <address@hidden> writes:
> On 02/08/2016 09:43 PM, Alex Bennée wrote:
>> Stefan Hajnoczi <address@hidden> writes:
>>
>>> From: Paolo Bonzini <address@hidden>
>>>
>>> This is cleaner, and improves error reporting with -daemonize.
>>>
>>> Signed-off-by: Paolo Bonzini <address@hidden>
>>> Signed-off-by: Denis V. Lunev <address@hidden>
>>> Acked-by: Christian Borntraeger <address@hidden>
>>> Message-id: address@hidden
>>> Signed-off-by: Stefan Hajnoczi <address@hidden>
>>> ---
>>> qemu-io.c | 2 +-
>>> trace/control.c | 17 ++++++++++++-----
>>> trace/control.h | 13 ++++++++++++-
>>> trace/simple.c | 6 ++----
>>> trace/simple.h | 4 ++--
>>> vl.c | 13 +++++++++----
>>> 6 files changed, 38 insertions(+), 17 deletions(-)
>>>
>>> diff --git a/qemu-io.c b/qemu-io.c
>>> index 1c11d57..83c48f4 100644
>>> --- a/qemu-io.c
>>> +++ b/qemu-io.c
>>> @@ -435,7 +435,7 @@ int main(int argc, char **argv)
>>> }
>>> break;
>>> case 'T':
>>> - if (!trace_init_backends(optarg)) {
>>> + if (!trace_init_backends()) {
>>> exit(1); /* error message will have been printed */
>>> }
>>> break;
>>> diff --git a/trace/control.c b/trace/control.c
>>> index 931d64c..f5a497a 100644
>>> --- a/trace/control.c
>>> +++ b/trace/control.c
>>> @@ -145,17 +145,24 @@ void trace_init_events(const char *fname)
>>> loc_pop(&loc);
>>> }
>>>
>>> -bool trace_init_backends(const char *file)
>>> +void trace_init_file(const char *file)
>>> {
>>> #ifdef CONFIG_TRACE_SIMPLE
>>> - if (!st_init(file)) {
>>> - fprintf(stderr, "failed to initialize simple tracing backend.\n");
>>> - return false;
>>> - }
>>> + st_set_trace_file(file);
>> This breaks "make check" as st_set_trace_file will attempt to flush the
>> file:
> this does not hang for me even with CONFIG_TRACE_SIMPLE enabled.
> Could you share your ./configure options?
./configure --target-list=x86_64-softmmu --enable-trace-backends=simple
Also see:
https://travis-ci.org/stsquad/qemu/jobs/107280320
--
Alex Bennée
- [Qemu-devel] [PULL 00/13] Tracing patches, Stefan Hajnoczi, 2016/02/03
- [Qemu-devel] [PULL 01/13] trace: count number of enabled events, Stefan Hajnoczi, 2016/02/03
- [Qemu-devel] [PULL 03/13] trace: fix documentation, Stefan Hajnoczi, 2016/02/03
- [Qemu-devel] [PULL 02/13] trace: track enabled events in a separate array, Stefan Hajnoczi, 2016/02/03
- [Qemu-devel] [PULL 04/13] trace: split trace_init_events out of trace_init_backends, Stefan Hajnoczi, 2016/02/03
- [Qemu-devel] [PULL 06/13] trace: no need to call trace_backend_init in different branches now, Stefan Hajnoczi, 2016/02/03
- [Qemu-devel] [PULL 05/13] trace: split trace_init_file out of trace_init_backends, Stefan Hajnoczi, 2016/02/03
[Qemu-devel] [PULL 07/13] trace: add "-trace enable=...", Stefan Hajnoczi, 2016/02/03
[Qemu-devel] [PULL 08/13] trace: add "-trace help", Stefan Hajnoczi, 2016/02/03
[Qemu-devel] [PULL 09/13] log: do not unnecessarily include qom/cpu.h, Stefan Hajnoczi, 2016/02/03
[Qemu-devel] [PULL 10/13] log: move qemu-log.c into util/ directory, Stefan Hajnoczi, 2016/02/03