From: Jiri Olsa Date: Tue, 7 Jan 2014 12:47:23 +0000 (+0100) Subject: perf tools: Fix dwarf unwind max_stack processing X-Git-Tag: next-20140306~34^2~14^2~6^2~21 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b42dc32d4f91e4c0f34b628fdb012eb423da9e69;p=karo-tx-linux.git perf tools: Fix dwarf unwind max_stack processing The 'unwind__get_entries' function currently returns 'max_stack + 1' entries (instead of exact max_stack entries), because max_stack value does not get decremented for the first entry. This fix makes dwarf-unwind test pass. Signed-off-by: Jiri Olsa Acked-by: Jean Pihet Cc: Corey Ashford Cc: David Ahern Cc: Frederic Weisbecker Cc: Ingo Molnar Cc: Jean Pihet Cc: Namhyung Kim Cc: Paul Mackerras Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/1389098853-14466-7-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/unwind.c b/tools/perf/util/unwind.c index 742f23bf35ff..bff3209305e1 100644 --- a/tools/perf/util/unwind.c +++ b/tools/perf/util/unwind.c @@ -595,5 +595,5 @@ int unwind__get_entries(unwind_entry_cb_t cb, void *arg, if (ret) return -ENOMEM; - return get_entries(&ui, cb, arg, max_stack); + return --max_stack > 0 ? get_entries(&ui, cb, arg, max_stack) : 0; }