Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 105eb30f authored by Namhyung Kim's avatar Namhyung Kim Committed by Jiri Olsa
Browse files

perf ui/tui: Add 'F' hotkey to toggle percentage output



Add 'F' hotkey to toggle relative and absolute percentage of filtered
entries.

Suggested-by: default avatarJiri Olsa <jolsa@redhat.com>
Signed-off-by: default avatarNamhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1397145720-8063-7-git-send-email-namhyung@kernel.org


Signed-off-by: default avatarJiri Olsa <jolsa@redhat.com>
parent 0b93da17
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -1389,6 +1389,7 @@ static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
	"C             Collapse all callchains\n"			\
	"C             Collapse all callchains\n"			\
	"d             Zoom into current DSO\n"				\
	"d             Zoom into current DSO\n"				\
	"E             Expand all callchains\n"				\
	"E             Expand all callchains\n"				\
	"F             Toggle percentage of filtered entries\n"		\


	/* help messages are sorted by lexical order of the hotkey */
	/* help messages are sorted by lexical order of the hotkey */
	const char report_help[] = HIST_BROWSER_HELP_COMMON
	const char report_help[] = HIST_BROWSER_HELP_COMMON
@@ -1494,6 +1495,9 @@ static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
			if (env->arch)
			if (env->arch)
				tui__header_window(env);
				tui__header_window(env);
			continue;
			continue;
		case 'F':
			symbol_conf.filter_relative ^= 1;
			continue;
		case K_F1:
		case K_F1:
		case 'h':
		case 'h':
		case '?':
		case '?':