|
@@ -666,12 +666,15 @@ static int __cmd_record(int argc, const char **argv)
|
|
nr_counters,
|
|
nr_counters,
|
|
process_synthesized_event,
|
|
process_synthesized_event,
|
|
session);
|
|
session);
|
|
- if (err <= 0) {
|
|
|
|
- pr_err("Couldn't record tracing data.\n");
|
|
|
|
- return err;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- advance_output(err);
|
|
|
|
|
|
+ /*
|
|
|
|
+ * FIXME err <= 0 here actually means that there were no tracepoints
|
|
|
|
+ * so its not really an error, just that we don't need to synthesize
|
|
|
|
+ * anything.
|
|
|
|
+ * We really have to return this more properly and also propagate
|
|
|
|
+ * errors that now are calling die()
|
|
|
|
+ */
|
|
|
|
+ if (err > 0)
|
|
|
|
+ advance_output(err);
|
|
}
|
|
}
|
|
|
|
|
|
machine = perf_session__find_host_machine(session);
|
|
machine = perf_session__find_host_machine(session);
|