OSDN Git Service

perf trace: Filter out gnome-terminal* parent
authorArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 12 Feb 2019 16:51:49 +0000 (13:51 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 14 Feb 2019 18:18:04 +0000 (15:18 -0300)
Just like it does with 'sshd', to reduce the feedback loop when doing
system wide tracing on on a gnome GUI.

Need to figure out how to auto-filter the calls to other UI components
tho.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Luis Cláudio Gonçalves <lclaudio@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-rjopq5y92itgokppdhe8sc6z@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-trace.c

index a9b51f5..68a01e6 100644 (file)
@@ -2771,7 +2771,8 @@ static int trace__set_filter_loop_pids(struct trace *trace)
                if (parent == NULL)
                        break;
 
-               if (!strcmp(thread__comm_str(parent), "sshd")) {
+               if (!strcmp(thread__comm_str(parent), "sshd") ||
+                   strstarts(thread__comm_str(parent), "gnome-terminal")) {
                        pids[nr++] = parent->tid;
                        break;
                }