All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] perf report: Enable finding the kernel inline function
  2017-07-18 20:31 [PATCH] perf report: Enable finding the kernel inline function Jin Yao
@ 2017-07-18 15:52 ` Arnaldo Carvalho de Melo
  2017-07-20  8:58 ` [tip:perf/core] perf report: Enable finding kernel inline functions tip-bot for Jin Yao
  1 sibling, 0 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2017-07-18 15:52 UTC (permalink / raw
  To: Jin Yao
  Cc: jolsa, peterz, mingo, alexander.shishkin, milian.wolff,
	Linux-kernel, ak, kan.liang, yao.jin

Em Wed, Jul 19, 2017 at 04:31:32AM +0800, Jin Yao escreveu:
> Currently perf has supported a mode to query inline stack. It works
> well for finding the user space inline function but it doesn't work
> for finding kernel inline function due to some unnecessary checking.
> 
> This patch removes these unnecessary checking. Now the kernel inline
> function can be reported.
> 
> For example,
> perf report --inline -g func --stdio

Thanks, applied.

- Arnaldo

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] perf report: Enable finding the kernel inline function
@ 2017-07-18 20:31 Jin Yao
  2017-07-18 15:52 ` Arnaldo Carvalho de Melo
  2017-07-20  8:58 ` [tip:perf/core] perf report: Enable finding kernel inline functions tip-bot for Jin Yao
  0 siblings, 2 replies; 3+ messages in thread
From: Jin Yao @ 2017-07-18 20:31 UTC (permalink / raw
  To: acme, jolsa, peterz, mingo, alexander.shishkin, milian.wolff
  Cc: Linux-kernel, ak, kan.liang, yao.jin, Jin Yao

Currently perf has supported a mode to query inline stack. It works
well for finding the user space inline function but it doesn't work
for finding kernel inline function due to some unnecessary checking.

This patch removes these unnecessary checking. Now the kernel inline
function can be reported.

For example,
perf report --inline -g func --stdio

|--46.19%--do_huge_pmd_anonymous_page
|          do_huge_pmd_anonymous_page (inline)
|          __do_huge_pmd_anonymous_page (inline)
|          __SetPageUptodate (inline)
|          __set_bit (inline)

The result is compared with the output of addr2line. They are match.

Signed-off-by: Jin Yao <yao.jin@linux.intel.com>
---
 tools/perf/ui/browsers/hists.c | 3 ---
 tools/perf/ui/stdio/hist.c     | 3 ---
 2 files changed, 6 deletions(-)

diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c
index 69f4570..f4bc246 100644
--- a/tools/perf/ui/browsers/hists.c
+++ b/tools/perf/ui/browsers/hists.c
@@ -166,9 +166,6 @@ static struct inline_node *inline_node__create(struct map *map, u64 ip)
 	if (dso == NULL)
 		return NULL;
 
-	if (dso->kernel != DSO_TYPE_USER)
-		return NULL;
-
 	node = dso__parse_addr_inlines(dso,
 				       map__rip_2objdump(map, ip));
 
diff --git a/tools/perf/ui/stdio/hist.c b/tools/perf/ui/stdio/hist.c
index 42e432b..2df8eb1 100644
--- a/tools/perf/ui/stdio/hist.c
+++ b/tools/perf/ui/stdio/hist.c
@@ -35,9 +35,6 @@ static size_t inline__fprintf(struct map *map, u64 ip, int left_margin,
 	if (dso == NULL)
 		return 0;
 
-	if (dso->kernel != DSO_TYPE_USER)
-		return 0;
-
 	node = dso__parse_addr_inlines(dso,
 				       map__rip_2objdump(map, ip));
 	if (node == NULL)
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [tip:perf/core] perf report: Enable finding kernel inline functions
  2017-07-18 20:31 [PATCH] perf report: Enable finding the kernel inline function Jin Yao
  2017-07-18 15:52 ` Arnaldo Carvalho de Melo
@ 2017-07-20  8:58 ` tip-bot for Jin Yao
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Jin Yao @ 2017-07-20  8:58 UTC (permalink / raw
  To: linux-tip-commits
  Cc: yao.jin, ak, alexander.shishkin, kan.liang, mingo, tglx, jolsa,
	hpa, peterz, milian.wolff, linux-kernel, acme

Commit-ID:  8b8ef2d74dec305b99dd43ec71d3ba2f502100b9
Gitweb:     http://git.kernel.org/tip/8b8ef2d74dec305b99dd43ec71d3ba2f502100b9
Author:     Jin Yao <yao.jin@linux.intel.com>
AuthorDate: Wed, 19 Jul 2017 04:31:32 +0800
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Tue, 18 Jul 2017 23:14:27 -0300

perf report: Enable finding kernel inline functions

Currently perf supports a mode to query inline stack. It works well for
finding user space inline functions but it doesn't work for kernel ones,
due to some unnecessary check.

This patch removes these unnecessary checks. Now kernel inline functions
can be reported.

For example:

  perf report --inline -g func --stdio

  |--46.19%--do_huge_pmd_anonymous_page
  |          do_huge_pmd_anonymous_page (inline)
  |          __do_huge_pmd_anonymous_page (inline)
  |          __SetPageUptodate (inline)
  |          __set_bit (inline)

  The result is compared with the output of addr2line. They match.

Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Milian Wolff <milian.wolff@kdab.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1500409892-15904-1-git-send-email-yao.jin@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/ui/browsers/hists.c | 3 ---
 tools/perf/ui/stdio/hist.c     | 3 ---
 2 files changed, 6 deletions(-)

diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c
index 69f4570..f4bc246 100644
--- a/tools/perf/ui/browsers/hists.c
+++ b/tools/perf/ui/browsers/hists.c
@@ -166,9 +166,6 @@ static struct inline_node *inline_node__create(struct map *map, u64 ip)
 	if (dso == NULL)
 		return NULL;
 
-	if (dso->kernel != DSO_TYPE_USER)
-		return NULL;
-
 	node = dso__parse_addr_inlines(dso,
 				       map__rip_2objdump(map, ip));
 
diff --git a/tools/perf/ui/stdio/hist.c b/tools/perf/ui/stdio/hist.c
index 42e432b..2df8eb1 100644
--- a/tools/perf/ui/stdio/hist.c
+++ b/tools/perf/ui/stdio/hist.c
@@ -35,9 +35,6 @@ static size_t inline__fprintf(struct map *map, u64 ip, int left_margin,
 	if (dso == NULL)
 		return 0;
 
-	if (dso->kernel != DSO_TYPE_USER)
-		return 0;
-
 	node = dso__parse_addr_inlines(dso,
 				       map__rip_2objdump(map, ip));
 	if (node == NULL)

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-07-20  9:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-18 20:31 [PATCH] perf report: Enable finding the kernel inline function Jin Yao
2017-07-18 15:52 ` Arnaldo Carvalho de Melo
2017-07-20  8:58 ` [tip:perf/core] perf report: Enable finding kernel inline functions tip-bot for Jin Yao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.