Commit 0a8cb85c200c4082ed7e57efd90dd9d18c8d40b6

Authored by Jiri Olsa
Committed by Arnaldo Carvalho de Melo
1 parent 8affc2b8c2

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>

Showing 14 changed files with 19 additions and 19 deletions Side-by-side Diff

tools/perf/builtin-annotate.c
... ... @@ -297,7 +297,7 @@
297 297 .comm = perf_event__process_comm,
298 298 .exit = perf_event__process_exit,
299 299 .fork = perf_event__process_fork,
300   - .ordered_samples = true,
  300 + .ordered_events = true,
301 301 .ordering_requires_timestamps = true,
302 302 },
303 303 };
tools/perf/builtin-diff.c
... ... @@ -360,7 +360,7 @@
360 360 .exit = perf_event__process_exit,
361 361 .fork = perf_event__process_fork,
362 362 .lost = perf_event__process_lost,
363   - .ordered_samples = true,
  363 + .ordered_events = true,
364 364 .ordering_requires_timestamps = true,
365 365 };
366 366  
tools/perf/builtin-inject.c
... ... @@ -366,7 +366,7 @@
366 366 } else if (inject->sched_stat) {
367 367 struct perf_evsel *evsel;
368 368  
369   - inject->tool.ordered_samples = true;
  369 + inject->tool.ordered_events = true;
370 370  
371 371 evlist__for_each(session->evlist, evsel) {
372 372 const char *name = perf_evsel__name(evsel);
tools/perf/builtin-kmem.c
... ... @@ -256,7 +256,7 @@
256 256 static struct perf_tool perf_kmem = {
257 257 .sample = process_sample_event,
258 258 .comm = perf_event__process_comm,
259   - .ordered_samples = true,
  259 + .ordered_events = true,
260 260 };
261 261  
262 262 static double fragmentation(unsigned long n_req, unsigned long n_alloc)
tools/perf/builtin-kvm.c
... ... @@ -1058,7 +1058,7 @@
1058 1058 struct perf_tool eops = {
1059 1059 .sample = process_sample_event,
1060 1060 .comm = perf_event__process_comm,
1061   - .ordered_samples = true,
  1061 + .ordered_events = true,
1062 1062 };
1063 1063 struct perf_data_file file = {
1064 1064 .path = kvm->file_name,
... ... @@ -1311,7 +1311,7 @@
1311 1311 kvm->tool.exit = perf_event__process_exit;
1312 1312 kvm->tool.fork = perf_event__process_fork;
1313 1313 kvm->tool.lost = process_lost_event;
1314   - kvm->tool.ordered_samples = true;
  1314 + kvm->tool.ordered_events = true;
1315 1315 perf_tool__fill_defaults(&kvm->tool);
1316 1316  
1317 1317 /* set defaults */
tools/perf/builtin-lock.c
... ... @@ -852,7 +852,7 @@
852 852 struct perf_tool eops = {
853 853 .sample = process_sample_event,
854 854 .comm = perf_event__process_comm,
855   - .ordered_samples = true,
  855 + .ordered_events = true,
856 856 };
857 857 struct perf_data_file file = {
858 858 .path = input_name,
tools/perf/builtin-mem.c
... ... @@ -194,7 +194,7 @@
194 194 .lost = perf_event__process_lost,
195 195 .fork = perf_event__process_fork,
196 196 .build_id = perf_event__process_build_id,
197   - .ordered_samples = true,
  197 + .ordered_events = true,
198 198 },
199 199 .input_name = "perf.data",
200 200 };
tools/perf/builtin-report.c
... ... @@ -578,7 +578,7 @@
578 578 .attr = perf_event__process_attr,
579 579 .tracing_data = perf_event__process_tracing_data,
580 580 .build_id = perf_event__process_build_id,
581   - .ordered_samples = true,
  581 + .ordered_events = true,
582 582 .ordering_requires_timestamps = true,
583 583 },
584 584 .max_stack = PERF_MAX_STACK_DEPTH,
tools/perf/builtin-sched.c
... ... @@ -1662,7 +1662,7 @@
1662 1662 .comm = perf_event__process_comm,
1663 1663 .lost = perf_event__process_lost,
1664 1664 .fork = perf_sched__process_fork_event,
1665   - .ordered_samples = true,
  1665 + .ordered_events = true,
1666 1666 },
1667 1667 .cmp_pid = LIST_HEAD_INIT(sched.cmp_pid),
1668 1668 .sort_list = LIST_HEAD_INIT(sched.sort_list),
tools/perf/builtin-script.c
... ... @@ -1488,7 +1488,7 @@
1488 1488 .attr = process_attr,
1489 1489 .tracing_data = perf_event__process_tracing_data,
1490 1490 .build_id = perf_event__process_build_id,
1491   - .ordered_samples = true,
  1491 + .ordered_events = true,
1492 1492 .ordering_requires_timestamps = true,
1493 1493 },
1494 1494 };
tools/perf/builtin-timechart.c
... ... @@ -1920,7 +1920,7 @@
1920 1920 .fork = process_fork_event,
1921 1921 .exit = process_exit_event,
1922 1922 .sample = process_sample_event,
1923   - .ordered_samples = true,
  1923 + .ordered_events = true,
1924 1924 },
1925 1925 .proc_num = 15,
1926 1926 .min_time = 1000000,
tools/perf/builtin-trace.c
... ... @@ -2209,7 +2209,7 @@
2209 2209 trace->tool.tracing_data = perf_event__process_tracing_data;
2210 2210 trace->tool.build_id = perf_event__process_build_id;
2211 2211  
2212   - trace->tool.ordered_samples = true;
  2212 + trace->tool.ordered_events = true;
2213 2213 trace->tool.ordering_requires_timestamps = true;
2214 2214  
2215 2215 /* add tid to output */
tools/perf/util/session.c
... ... @@ -104,9 +104,9 @@
104 104 }
105 105  
106 106 if (tool && tool->ordering_requires_timestamps &&
107   - tool->ordered_samples && !perf_evlist__sample_id_all(session->evlist)) {
  107 + tool->ordered_events && !perf_evlist__sample_id_all(session->evlist)) {
108 108 dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
109   - tool->ordered_samples = false;
  109 + tool->ordered_events = false;
110 110 }
111 111  
112 112 return session;
... ... @@ -238,7 +238,7 @@
238 238 if (tool->build_id == NULL)
239 239 tool->build_id = process_finished_round_stub;
240 240 if (tool->finished_round == NULL) {
241   - if (tool->ordered_samples)
  241 + if (tool->ordered_events)
242 242 tool->finished_round = process_finished_round;
243 243 else
244 244 tool->finished_round = process_finished_round_stub;
... ... @@ -483,7 +483,7 @@
483 483 struct ui_progress prog;
484 484 int ret;
485 485  
486   - if (!tool->ordered_samples || !limit)
  486 + if (!tool->ordered_events || !limit)
487 487 return 0;
488 488  
489 489 if (show_progress)
... ... @@ -1062,7 +1062,7 @@
1062 1062 if (ret)
1063 1063 return ret;
1064 1064  
1065   - if (tool->ordered_samples) {
  1065 + if (tool->ordered_events) {
1066 1066 ret = perf_session_queue_event(session, event, &sample,
1067 1067 file_offset);
1068 1068 if (ret != -ETIME)
tools/perf/util/tool.h
... ... @@ -40,7 +40,7 @@
40 40 event_op2 tracing_data;
41 41 event_op2 finished_round,
42 42 build_id;
43   - bool ordered_samples;
  43 + bool ordered_events;
44 44 bool ordering_requires_timestamps;
45 45 };
46 46