]> git.baikalelectronics.ru Git - kernel.git/commit
perf annotate: Fix 'annotate.use_offset' config variable usage
authorNamhyung Kim <namhyung@kernel.org>
Wed, 21 Oct 2015 02:57:20 +0000 (11:57 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 22 Oct 2015 19:34:29 +0000 (16:34 -0300)
commit09fd166aa52c82641c209a30be647ad173608978
tree34123b18c6bdff126a9241ea2e6282cf589e6ce5
parentcdb12f15ef8ae5ed1fcbea90aa20668028002da6
perf annotate: Fix 'annotate.use_offset' config variable usage

The annotate__configs should be sorted so that it can use bsearch(3).

However commit 50191572985d ("perf annotate: Display total number of
samples with --show-total-period") added a new config item at the end.
This resulted in the 'annotate.use_offset' config variable cannot be
found and perf terminated like below:

  $ perf report
  bad config file line 6 in ~/.perfconfig

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Martin Liška <mliska@suse.cz>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Taeung Song <treeze.taeung@gmail.com>
Fixes: 50191572985d ("perf annotate: Display total number of samples with --show-total-period")
Link: http://lkml.kernel.org/r/1445396240-3428-1-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/ui/browsers/annotate.c