File perf-hists-browser-restore-esc-as-zoom-out-of-dso-thread-etc.patch of Package perf
36
1
From: Arnaldo Carvalho de Melo <acme@redhat.com>
2
Date: Mon, 16 Dec 2019 13:22:33 -0300
3
Subject: perf hists browser: Restore ESC as "Zoom out" of DSO/thread/etc
4
Git-commit: 3f7774033e6820d25beee5cf7aefa11d4968b951
5
Patch-mainline: v5.6-rc1
6
References: git-fixes
7
8
We need to set actions->ms.map since 599a2f38a989 ("perf hists browser:
9
Check sort keys before hot key actions"), as in that patch we bail out
10
if map is NULL.
11
12
Reviewed-by: Jiri Olsa <jolsa@kernel.org>
13
Cc: Adrian Hunter <adrian.hunter@intel.com>
14
Cc: Namhyung Kim <namhyung@kernel.org>
15
Fixes: 599a2f38a989 ("perf hists browser: Check sort keys before hot key actions")
16
Link: https://lkml.kernel.org/n/tip-wp1ssoewy6zihwwexqpohv0j@git.kernel.org
17
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
18
Signed-off-by: Tony Jones <tonyj@suse.de>
19
---
20
tools/perf/ui/browsers/hists.c | 1 +
21
1 file changed, 1 insertion(+)
22
23
diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c
24
index d4d3558fdef4..cfc6172ecab7 100644
25
--- a/tools/perf/ui/browsers/hists.c
26
+++ b/tools/perf/ui/browsers/hists.c
27
28
29
continue;
30
}
31
+ actions->ms.map = map;
32
top = pstack__peek(browser->pstack);
33
if (top == &browser->hists->dso_filter) {
34
/*
35
36