summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2017-09-01 13:55:40 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-09-01 13:55:40 -0400
commiteba9fac017617e685d648339e29a1453a30cb065 (patch)
treeb0683d50c85d04a4d92bdcba8a5ac324d8307695
parent63ce8449bc1081711eef1add68909e9bd758de62 (diff)
perf annotate browser: Help for cycling thru hottest instructions with TAB/shift+TAB
The popup help accessed via 'h' wasn't mentioning about TAB and shift-TAB, just about 'H', which goes to the hottest line, while the former two are the hotkeys for actually cycling thru the hottest lines. Reported-by: Flavio Bruno Leitner <fbl@redhat.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Taeung Song <treeze.taeung@gmail.com> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/n/tip-5ppym6odizfj1ifa4t7neiku@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/ui/browsers/annotate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/perf/ui/browsers/annotate.c b/tools/perf/ui/browsers/annotate.c
index ba0aee576a2b..786fecaf578e 100644
--- a/tools/perf/ui/browsers/annotate.c
+++ b/tools/perf/ui/browsers/annotate.c
@@ -829,7 +829,8 @@ static int annotate_browser__run(struct annotate_browser *browser,
829 "q/ESC/CTRL+C Exit\n\n" 829 "q/ESC/CTRL+C Exit\n\n"
830 "ENTER Go to target\n" 830 "ENTER Go to target\n"
831 "ESC Exit\n" 831 "ESC Exit\n"
832 "H Cycle thru hottest instructions\n" 832 "H Go to hottest instruction\n"
833 "TAB/shift+TAB Cycle thru hottest instructions\n"
833 "j Toggle showing jump to target arrows\n" 834 "j Toggle showing jump to target arrows\n"
834 "J Toggle showing number of jump sources on targets\n" 835 "J Toggle showing number of jump sources on targets\n"
835 "n Search next string\n" 836 "n Search next string\n"