[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20170314074652.26916-1-changbin.du@intel.com>
Date: Tue, 14 Mar 2017 15:46:52 +0800
From: changbin.du@...el.com
To: peterz@...radead.org, mingo@...hat.com, acme@...nel.org
Cc: linux-kernel@...r.kernel.org, Changbin Du <changbin.du@...el.com>
Subject: [PATCH] perf report: setup elide when siwtch to another event in by tab key
From: Changbin Du <changbin.du@...el.com>
When we zoom into a column, that column is elided. But this should apply
to another event browser window after event switch by tab key. We need
setup elide corresponding to new event.
Signed-off-by: Changbin Du <changbin.du@...el.com>
---
tools/perf/ui/browsers/hists.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c
index ca777dc..42239ed 100644
--- a/tools/perf/ui/browsers/hists.c
+++ b/tools/perf/ui/browsers/hists.c
@@ -2846,6 +2846,11 @@ static int perf_evsel__hists_browse(struct perf_evlist *evlist, struct perf_evse
if (browser == NULL)
return -1;
+ /* setup elide in case we are siwtching to another event in by tab */
+ perf_hpp__set_elide(HISTC_DSO, hists->dso_filter);
+ perf_hpp__set_elide(HISTC_SOCKET, hists->socket_filter);
+ perf_hpp__set_elide(HISTC_THREAD, hists->thread_filter);
+
/* reset abort key so that it can get Ctrl-C as a key */
SLang_reset_tty();
SLang_init_tty(0, 0, 0);
--
2.7.4
Powered by blists - more mailing lists