summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/tool.h
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2014-07-06 14:18:21 +0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-08-12 12:02:54 -0300
commit0a8cb85c200c4082ed7e57efd90dd9d18c8d40b6 (patch)
tree6e9bb61b2a8e10a9f86ed8c48da6cb84aa06fa0d /tools/perf/util/tool.h
parent8affc2b8c27bfc2d6e70827b746f490b62c44eaa (diff)
downloadlinux-0a8cb85c200c4082ed7e57efd90dd9d18c8d40b6.tar.gz
linux-0a8cb85c200c4082ed7e57efd90dd9d18c8d40b6.tar.xz
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/util/tool.h')
-rw-r--r--tools/perf/util/tool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/tool.h b/tools/perf/util/tool.h
index 4385816d3d49..f11636966a0f 100644
--- a/tools/perf/util/tool.h
+++ b/tools/perf/util/tool.h
@@ -40,7 +40,7 @@ struct perf_tool {
event_op2 tracing_data;
event_op2 finished_round,
build_id;
- bool ordered_samples;
+ bool ordered_events;
bool ordering_requires_timestamps;
};