From: Thomas Gleixner Date: Tue, 7 Dec 2010 12:48:44 +0000 (+0000) Subject: perf session: Dont queue events w/o timestamps X-Git-Tag: v2.6.38-rc1~490^2~34^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79a14c1f458d598642bf11f09512c83d33a114e6;p=thirdparty%2Fkernel%2Flinux.git perf session: Dont queue events w/o timestamps If the event has no timestamp assigned then the parse code sets it to ~0ULL which causes the ordering code to enqueue it at the end. Process it right away. Reported-by: Ian Munsie Cc: Frederic Weisbecker Cc: Ian Munsie Cc: Ingo Molnar Cc: Peter Zijlstra LKML-Reference: <20101207124550.528788441@linutronix.de> Signed-off-by: Thomas Gleixner Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index b3b145a8ff7c4..e5d0ed9603eeb 100644 --- a/tools/perf/util/session.c +++ b/tools/perf/util/session.c @@ -603,7 +603,7 @@ static int perf_session_queue_event(struct perf_session *s, event_t *event, u64 timestamp = data->time; struct sample_queue *new; - if (!timestamp) + if (!timestamp || timestamp == ~0ULL) return -ETIME; if (timestamp < s->ordered_samples.last_flush) {