Only process the samples whose timestamp is in [start, end).
Cc: David Ahern <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: Arjan van de Ven <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Yanmin Zhang <[email protected]>
Cc: Wu Fengguang <[email protected]>
Cc: Mike Galbraith <[email protected]>
Cc: Andrew Morton <[email protected]>
Signed-off-by: Chenggang Qin <[email protected]>
---
tools/perf/util/session.c | 43 +++++++++++++++++++++++++++++++++++++++++--
1 files changed, 41 insertions(+), 2 deletions(-)
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c
index 4e9dd66..d50e29e 100644
--- a/tools/perf/util/session.c
+++ b/tools/perf/util/session.c
@@ -532,6 +532,9 @@ static int flush_sample_queue(struct perf_session *s,
bool show_progress = limit == ULLONG_MAX;
int ret;
+ if (limit > s->tend)
+ limit = s->tend;
+
if (!tool->ordered_samples || !limit)
return 0;
@@ -539,6 +542,9 @@ static int flush_sample_queue(struct perf_session *s,
if (session_done())
return 0;
+ if (iter->timestamp < s->tstart)
+ continue;
+
if (iter->timestamp > limit)
break;
@@ -617,7 +623,26 @@ static int process_finished_round(struct perf_tool *tool,
union perf_event *event __maybe_unused,
struct perf_session *session)
{
- int ret = flush_sample_queue(session, tool);
+ int ret = 0;
+
+ /*
+ * The next round should be processed continue.
+ * But, this round is skipped.
+ */
+ if (session->ordered_samples.next_flush < session->tstart) {
+ session->ordered_samples.next_flush =
session->ordered_samples.max_timestamp;
+ return ret;
+ }
+
+ /*
+ * This round & all followed rounds are skipped.
+ */
+ if (session->ordered_samples.min_timestamp > session->tend) {
+ session->ordered_samples.next_flush = ULLONG_MAX;
+ return ret;
+ }
+
+ ret = flush_sample_queue(session, tool);
if (!ret)
session->ordered_samples.next_flush =
session->ordered_samples.max_timestamp;
@@ -1373,6 +1398,14 @@ more:
goto out_err;
}
+ /*
+ * After process a finished round event:
+ * The minimal timestamp in os->samples is greater than
+ * tend, so, the followed events couldn't be processed.
+ */
+ if (session->ordered_samples.next_flush == ULLONG_MAX)
+ goto out_err;
+
head += size;
file_pos += size;
@@ -1389,8 +1422,14 @@ more:
if (file_pos < file_size)
goto more;
+ if (session->ordered_samples.max_timestamp < session->tstart)
+ goto out_err;
+
+ if (session->ordered_samples.min_timestamp > session->tend)
+ goto out_err;
+
/* do the final flush for ordered samples */
- session->ordered_samples.next_flush = ULLONG_MAX;
+ session->ordered_samples.next_flush = session->tend;
err = flush_sample_queue(session, tool);
out_err:
ui_progress__finish();
--
1.7.8.rc2.5.g815b
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/