From: Arnaldo Carvalho de Melo Date: Sat, 25 Dec 2010 20:33:12 +0000 (-0200) Subject: perf script: Fix event ordering settings to work with older kernels X-Git-Tag: v3.0~2030^2~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ce0ac9e1851364fa67c991659ce1db05ab82c6ae;p=platform%2Fkernel%2Flinux-amlogic.git perf script: Fix event ordering settings to work with older kernels If we don't use .ordering_requires_timestamps we'll end up trying to order events with no timestamps when running on older kernels. Problem introduced in eac23d1c. After the last three fixes, perf scripting is back working, tested with new perf userspace on old and new (with sample_id_all) kernels. Cc: Frederic Weisbecker Cc: Ian Munsie Cc: Ingo Molnar Cc: Mike Galbraith Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Stephane Eranian Cc: Tom Zanussi Cc: Torok Edwin LKML-Reference: Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index 6ef65c0..43480fd 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c @@ -117,6 +117,7 @@ static struct perf_event_ops event_ops = { .tracing_data = event__process_tracing_data, .build_id = event__process_build_id, .lost = process_lost_event, + .ordering_requires_timestamps = true, .ordered_samples = true, };