diff options
author | Jiri Olsa <jolsa@kernel.org> | 2014-07-06 08:18:21 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-08-12 11:02:54 -0400 |
commit | 0a8cb85c200c4082ed7e57efd90dd9d18c8d40b6 (patch) | |
tree | 6e9bb61b2a8e10a9f86ed8c48da6cb84aa06fa0d /tools/perf/builtin-script.c | |
parent | 8affc2b8c27bfc2d6e70827b746f490b62c44eaa (diff) |
perf tools: Rename ordered_samples bool to ordered_events
The time ordering is generic for all kinds of events, so using generic
name 'ordered_events' for ordered_samples bool in perf_tool struct.
No functional change was intended.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Acked-by: David Ahern <dsahern@gmail.com>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jean Pihet <jean.pihet@linaro.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/n/tip-07mrqzcuhsks9wfmxrzsvemz@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-script.c')
-rw-r--r-- | tools/perf/builtin-script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index f57035b89c15..868c17d09762 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c | |||
@@ -1488,7 +1488,7 @@ int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused) | |||
1488 | .attr = process_attr, | 1488 | .attr = process_attr, |
1489 | .tracing_data = perf_event__process_tracing_data, | 1489 | .tracing_data = perf_event__process_tracing_data, |
1490 | .build_id = perf_event__process_build_id, | 1490 | .build_id = perf_event__process_build_id, |
1491 | .ordered_samples = true, | 1491 | .ordered_events = true, |
1492 | .ordering_requires_timestamps = true, | 1492 | .ordering_requires_timestamps = true, |
1493 | }, | 1493 | }, |
1494 | }; | 1494 | }; |