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>
This commit is contained in:
parent
8affc2b8c2
commit
0a8cb85c20
14 changed files with 19 additions and 19 deletions
|
@ -104,9 +104,9 @@ struct perf_session *perf_session__new(struct perf_data_file *file,
|
|||
}
|
||||
|
||||
if (tool && tool->ordering_requires_timestamps &&
|
||||
tool->ordered_samples && !perf_evlist__sample_id_all(session->evlist)) {
|
||||
tool->ordered_events && !perf_evlist__sample_id_all(session->evlist)) {
|
||||
dump_printf("WARNING: No sample_id_all support, falling back to unordered processing\n");
|
||||
tool->ordered_samples = false;
|
||||
tool->ordered_events = false;
|
||||
}
|
||||
|
||||
return session;
|
||||
|
@ -238,7 +238,7 @@ void perf_tool__fill_defaults(struct perf_tool *tool)
|
|||
if (tool->build_id == NULL)
|
||||
tool->build_id = process_finished_round_stub;
|
||||
if (tool->finished_round == NULL) {
|
||||
if (tool->ordered_samples)
|
||||
if (tool->ordered_events)
|
||||
tool->finished_round = process_finished_round;
|
||||
else
|
||||
tool->finished_round = process_finished_round_stub;
|
||||
|
@ -483,7 +483,7 @@ static int flush_sample_queue(struct perf_session *s,
|
|||
struct ui_progress prog;
|
||||
int ret;
|
||||
|
||||
if (!tool->ordered_samples || !limit)
|
||||
if (!tool->ordered_events || !limit)
|
||||
return 0;
|
||||
|
||||
if (show_progress)
|
||||
|
@ -1062,7 +1062,7 @@ static s64 perf_session__process_event(struct perf_session *session,
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
if (tool->ordered_samples) {
|
||||
if (tool->ordered_events) {
|
||||
ret = perf_session_queue_event(session, event, &sample,
|
||||
file_offset);
|
||||
if (ret != -ETIME)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue