perf time-utils: Make perf_time__parse_for_ranges() more logical
authorAdrian Hunter <adrian.hunter@intel.com>
Tue, 4 Jun 2019 13:00:15 +0000 (16:00 +0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 10 Jun 2019 19:20:12 +0000 (16:20 -0300)
Explicit time ranges never contain a percent sign whereas percentage
ranges always do, so it is possible to call the correct parser.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jin Yao <yao.jin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: http://lkml.kernel.org/r/20190604130017.31207-18-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/time-utils.c

index 9a46375..d942840 100644 (file)
@@ -402,6 +402,7 @@ int perf_time__parse_for_ranges(const char *time_str,
                                struct perf_time_interval **ranges,
                                int *range_size, int *range_num)
 {
+       bool has_percent = strchr(time_str, '%');
        struct perf_time_interval *ptime_range;
        int size, num, ret = -EINVAL;
 
@@ -409,7 +410,7 @@ int perf_time__parse_for_ranges(const char *time_str,
        if (!ptime_range)
                return -ENOMEM;
 
-       if (perf_time__parse_str(ptime_range, time_str) != 0) {
+       if (has_percent) {
                if (session->evlist->first_sample_time == 0 &&
                    session->evlist->last_sample_time == 0) {
                        pr_err("HINT: no first/last sample time found in perf data.\n"
@@ -427,6 +428,8 @@ int perf_time__parse_for_ranges(const char *time_str,
                if (num < 0)
                        goto error_invalid;
        } else {
+               if (perf_time__parse_str(ptime_range, time_str))
+                       goto error_invalid;
                num = 1;
        }