]> git.proxmox.com Git - mirror_qemu.git/commitdiff
trace: Replace error with warning if event is not defined
authorAlexey Kardashevskiy <aik@ozlabs.ru>
Wed, 21 May 2014 08:16:01 +0000 (18:16 +1000)
committerStefan Hajnoczi <stefanha@redhat.com>
Mon, 9 Jun 2014 13:43:40 +0000 (15:43 +0200)
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 <aik@ozlabs.ru>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
trace/control.c

index 49f61e137b5b8f7e1156eb460dc7754d18db13be..4aa02cf2d6c021541c15b31a0a989a38c1baee72 100644 (file)
@@ -112,15 +112,15 @@ void trace_backend_init_events(const char *fname)
                 TraceEvent *ev = trace_event_name(line_ptr);
                 if (ev == NULL) {
                     fprintf(stderr,
-                            "error: trace event '%s' does not exist\n", line_ptr);
-                    exit(1);
-                }
-                if (!trace_event_get_state_static(ev)) {
+                            "WARNING: trace event '%s' does not exist\n",
+                            line_ptr);
+                } else if (!trace_event_get_state_static(ev)) {
                     fprintf(stderr,
-                            "error: trace event '%s' is not traceable\n", line_ptr);
-                    exit(1);
+                            "WARNING: trace event '%s' is not traceable\n",
+                            line_ptr);
+                } else {
+                    trace_event_set_state_dynamic(ev, enable);
                 }
-                trace_event_set_state_dynamic(ev, enable);
             }
         }
     }