Skip to content

Commit

Permalink
trace: split trace_init_events out of trace_init_backends
Browse files Browse the repository at this point in the history
This is cleaner and has two advantages.  First, it improves error
reporting with -daemonize.  Second, multiple "-trace events" options
now cumulate.

Signed-off-by: Paolo Bonzini <[email protected]>
Signed-off-by: Denis V. Lunev <[email protected]>
Acked-by: Christian Borntraeger <[email protected]>
Message-id: [email protected]
Signed-off-by: Stefan Hajnoczi <[email protected]>
  • Loading branch information
bonzini authored and stefanhaRH committed Feb 3, 2016
1 parent 52449a3 commit 45bd0b4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion qemu-io.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ int main(int argc, char **argv)
}
break;
case 'T':
if (!trace_init_backends(optarg, NULL)) {
if (!trace_init_backends(optarg)) {
exit(1); /* error message will have been printed */
}
break;
Expand Down
5 changes: 2 additions & 3 deletions trace/control.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ TraceEvent *trace_event_pattern(const char *pat, TraceEvent *ev)
return NULL;
}

static void trace_init_events(const char *fname)
void trace_init_events(const char *fname)
{
Location loc;
FILE *fp;
Expand Down Expand Up @@ -145,7 +145,7 @@ static void trace_init_events(const char *fname)
loc_pop(&loc);
}

bool trace_init_backends(const char *events, const char *file)
bool trace_init_backends(const char *file)
{
#ifdef CONFIG_TRACE_SIMPLE
if (!st_init(file)) {
Expand All @@ -167,6 +167,5 @@ bool trace_init_backends(const char *events, const char *file)
}
#endif

trace_init_events(events);
return true;
}
15 changes: 12 additions & 3 deletions trace/control.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,25 @@ static void trace_event_set_state_dynamic(TraceEvent *ev, bool state);

/**
* trace_init_backends:
* @events: Name of file with events to be enabled at startup; may be NULL.
* Corresponds to commandline option "-trace events=...".
* @file: Name of trace output file; may be NULL.
* Corresponds to commandline option "-trace file=...".
*
* Initialize the tracing backend.
*
* Returns: Whether the backends could be successfully initialized.
*/
bool trace_init_backends(const char *events, const char *file);
bool trace_init_backends(const char *file);

/**
* trace_init_events:
* @events: Name of file with events to be enabled at startup; may be NULL.
* Corresponds to commandline option "-trace events=...".
*
* Read the list of enabled tracing events.
*
* Returns: Whether the backends could be successfully initialized.
*/
void trace_init_events(const char *file);


#include "trace/control-internal.h"
Expand Down
8 changes: 4 additions & 4 deletions vl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2988,7 +2988,6 @@ int main(int argc, char **argv, char **envp)
bool userconfig = true;
const char *log_mask = NULL;
const char *log_file = NULL;
const char *trace_events = NULL;
const char *trace_file = NULL;
ram_addr_t maxram_size;
uint64_t ram_slots = 0;
Expand Down Expand Up @@ -3905,8 +3904,9 @@ int main(int argc, char **argv, char **envp)
if (!opts) {
exit(1);
}
trace_events = qemu_opt_get(opts, "events");
trace_init_events(qemu_opt_get(opts, "events"));
trace_file = qemu_opt_get(opts, "file");
qemu_opts_del(opts);
break;
}
case QEMU_OPTION_readconfig:
Expand Down Expand Up @@ -4106,7 +4106,7 @@ int main(int argc, char **argv, char **envp)
}

if (!is_daemonized()) {
if (!trace_init_backends(trace_events, trace_file)) {
if (!trace_init_backends(trace_file)) {
exit(1);
}
}
Expand Down Expand Up @@ -4653,7 +4653,7 @@ int main(int argc, char **argv, char **envp)
os_setup_post();

if (is_daemonized()) {
if (!trace_init_backends(trace_events, trace_file)) {
if (!trace_init_backends(trace_file)) {
exit(1);
}
}
Expand Down

0 comments on commit 45bd0b4

Please sign in to comment.