public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf tools: Use tid for finding thread
@ 2014-05-07  2:26 Namhyung Kim
  2014-05-07 12:01 ` Stephane Eranian
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Namhyung Kim @ 2014-05-07  2:26 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo, Jiri Olsa
  Cc: Peter Zijlstra, Ingo Molnar, Paul Mackerras, Namhyung Kim,
	Namhyung Kim, LKML, Adrian Hunter, David Ahern, Stephane Eranian

I believe that passing pid (instead of tid) as the 3rd arg of the
machine__find*_thread() was to find a main thread so that it can
search proper map group for symbols.  However with the map sharing
patch applied, it now can do it in any thread.

It fixes a bug when each thread has different name, it only reports a
main thread for samples in other threads.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Stephane Eranian <eranian@google.com>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
---
 tools/perf/builtin-inject.c     | 2 +-
 tools/perf/builtin-kmem.c       | 2 +-
 tools/perf/tests/code-reading.c | 2 +-
 tools/perf/util/build-id.c      | 2 +-
 tools/perf/util/event.c         | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c
index 3a7387551369..6a3af0013d68 100644
--- a/tools/perf/builtin-inject.c
+++ b/tools/perf/builtin-inject.c
@@ -209,7 +209,7 @@ static int perf_event__inject_buildid(struct perf_tool *tool,
 
 	cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
 
-	thread = machine__findnew_thread(machine, sample->pid, sample->pid);
+	thread = machine__findnew_thread(machine, sample->pid, sample->tid);
 	if (thread == NULL) {
 		pr_err("problem processing %d event, skipping it.\n",
 		       event->header.type);
diff --git a/tools/perf/builtin-kmem.c b/tools/perf/builtin-kmem.c
index f91fa4376f4b..bef3376bfaf3 100644
--- a/tools/perf/builtin-kmem.c
+++ b/tools/perf/builtin-kmem.c
@@ -235,7 +235,7 @@ static int process_sample_event(struct perf_tool *tool __maybe_unused,
 				struct machine *machine)
 {
 	struct thread *thread = machine__findnew_thread(machine, sample->pid,
-							sample->pid);
+							sample->tid);
 
 	if (thread == NULL) {
 		pr_debug("problem processing %d event, skipping it.\n",
diff --git a/tools/perf/tests/code-reading.c b/tools/perf/tests/code-reading.c
index adf3de3e38d6..67f2d6323558 100644
--- a/tools/perf/tests/code-reading.c
+++ b/tools/perf/tests/code-reading.c
@@ -256,7 +256,7 @@ static int process_sample_event(struct machine *machine,
 		return -1;
 	}
 
-	thread = machine__findnew_thread(machine, sample.pid, sample.pid);
+	thread = machine__findnew_thread(machine, sample.pid, sample.tid);
 	if (!thread) {
 		pr_debug("machine__findnew_thread failed\n");
 		return -1;
diff --git a/tools/perf/util/build-id.c b/tools/perf/util/build-id.c
index 6baabe63182b..a904a4cfe7d3 100644
--- a/tools/perf/util/build-id.c
+++ b/tools/perf/util/build-id.c
@@ -25,7 +25,7 @@ int build_id__mark_dso_hit(struct perf_tool *tool __maybe_unused,
 	struct addr_location al;
 	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
 	struct thread *thread = machine__findnew_thread(machine, sample->pid,
-							sample->pid);
+							sample->tid);
 
 	if (thread == NULL) {
 		pr_err("problem processing %d event, skipping it.\n",
diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c
index dbcaea1a8180..65795b835b39 100644
--- a/tools/perf/util/event.c
+++ b/tools/perf/util/event.c
@@ -788,7 +788,7 @@ int perf_event__preprocess_sample(const union perf_event *event,
 {
 	u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
 	struct thread *thread = machine__findnew_thread(machine, sample->pid,
-							sample->pid);
+							sample->tid);
 
 	if (thread == NULL)
 		return -1;
-- 
1.9.2


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

* Re: [PATCH] perf tools: Use tid for finding thread
  2014-05-07  2:26 [PATCH] perf tools: Use tid for finding thread Namhyung Kim
@ 2014-05-07 12:01 ` Stephane Eranian
  2014-05-07 14:49 ` David Ahern
  2014-05-11 13:15 ` Jiri Olsa
  2 siblings, 0 replies; 5+ messages in thread
From: Stephane Eranian @ 2014-05-07 12:01 UTC (permalink / raw)
  To: Namhyung Kim
  Cc: Arnaldo Carvalho de Melo, Jiri Olsa, Peter Zijlstra, Ingo Molnar,
	Paul Mackerras, Namhyung Kim, LKML, Adrian Hunter, David Ahern

On Wed, May 7, 2014 at 4:26 AM, Namhyung Kim <namhyung@kernel.org> wrote:
>
> I believe that passing pid (instead of tid) as the 3rd arg of the
> machine__find*_thread() was to find a main thread so that it can
> search proper map group for symbols.  However with the map sharing
> patch applied, it now can do it in any thread.
>
Your patch makes the code more meaningful for sure.
The pid, pid looked like a bug to me at first, but then I realized,
that yes, it is
look for the main thread.

Acked-by: Stephane Eranian <eranian@google.com>

>
> It fixes a bug when each thread has different name, it only reports a
> main thread for samples in other threads.
>
> Cc: Adrian Hunter <adrian.hunter@intel.com>
> Cc: David Ahern <dsahern@gmail.com>
> Cc: Stephane Eranian <eranian@google.com>
> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
> ---
>  tools/perf/builtin-inject.c     | 2 +-
>  tools/perf/builtin-kmem.c       | 2 +-
>  tools/perf/tests/code-reading.c | 2 +-
>  tools/perf/util/build-id.c      | 2 +-
>  tools/perf/util/event.c         | 2 +-
>  5 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c
> index 3a7387551369..6a3af0013d68 100644
> --- a/tools/perf/builtin-inject.c
> +++ b/tools/perf/builtin-inject.c
> @@ -209,7 +209,7 @@ static int perf_event__inject_buildid(struct perf_tool *tool,
>
>         cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
>
> -       thread = machine__findnew_thread(machine, sample->pid, sample->pid);
> +       thread = machine__findnew_thread(machine, sample->pid, sample->tid);
>         if (thread == NULL) {
>                 pr_err("problem processing %d event, skipping it.\n",
>                        event->header.type);
> diff --git a/tools/perf/builtin-kmem.c b/tools/perf/builtin-kmem.c
> index f91fa4376f4b..bef3376bfaf3 100644
> --- a/tools/perf/builtin-kmem.c
> +++ b/tools/perf/builtin-kmem.c
> @@ -235,7 +235,7 @@ static int process_sample_event(struct perf_tool *tool __maybe_unused,
>                                 struct machine *machine)
>  {
>         struct thread *thread = machine__findnew_thread(machine, sample->pid,
> -                                                       sample->pid);
> +                                                       sample->tid);
>
>         if (thread == NULL) {
>                 pr_debug("problem processing %d event, skipping it.\n",
> diff --git a/tools/perf/tests/code-reading.c b/tools/perf/tests/code-reading.c
> index adf3de3e38d6..67f2d6323558 100644
> --- a/tools/perf/tests/code-reading.c
> +++ b/tools/perf/tests/code-reading.c
> @@ -256,7 +256,7 @@ static int process_sample_event(struct machine *machine,
>                 return -1;
>         }
>
> -       thread = machine__findnew_thread(machine, sample.pid, sample.pid);
> +       thread = machine__findnew_thread(machine, sample.pid, sample.tid);
>         if (!thread) {
>                 pr_debug("machine__findnew_thread failed\n");
>                 return -1;
> diff --git a/tools/perf/util/build-id.c b/tools/perf/util/build-id.c
> index 6baabe63182b..a904a4cfe7d3 100644
> --- a/tools/perf/util/build-id.c
> +++ b/tools/perf/util/build-id.c
> @@ -25,7 +25,7 @@ int build_id__mark_dso_hit(struct perf_tool *tool __maybe_unused,
>         struct addr_location al;
>         u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
>         struct thread *thread = machine__findnew_thread(machine, sample->pid,
> -                                                       sample->pid);
> +                                                       sample->tid);
>
>         if (thread == NULL) {
>                 pr_err("problem processing %d event, skipping it.\n",
> diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c
> index dbcaea1a8180..65795b835b39 100644
> --- a/tools/perf/util/event.c
> +++ b/tools/perf/util/event.c
> @@ -788,7 +788,7 @@ int perf_event__preprocess_sample(const union perf_event *event,
>  {
>         u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
>         struct thread *thread = machine__findnew_thread(machine, sample->pid,
> -                                                       sample->pid);
> +                                                       sample->tid);
>
>         if (thread == NULL)
>                 return -1;
> --
> 1.9.2
>

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

* Re: [PATCH] perf tools: Use tid for finding thread
  2014-05-07  2:26 [PATCH] perf tools: Use tid for finding thread Namhyung Kim
  2014-05-07 12:01 ` Stephane Eranian
@ 2014-05-07 14:49 ` David Ahern
  2014-05-11 13:15 ` Jiri Olsa
  2 siblings, 0 replies; 5+ messages in thread
From: David Ahern @ 2014-05-07 14:49 UTC (permalink / raw)
  To: Namhyung Kim, Arnaldo Carvalho de Melo, Jiri Olsa
  Cc: Peter Zijlstra, Ingo Molnar, Paul Mackerras, Namhyung Kim, LKML,
	Adrian Hunter, Stephane Eranian

On 5/6/14, 8:26 PM, Namhyung Kim wrote:
> I believe that passing pid (instead of tid) as the 3rd arg of the
> machine__find*_thread() was to find a main thread so that it can
> search proper map group for symbols.  However with the map sharing
> patch applied, it now can do it in any thread.
>
> It fixes a bug when each thread has different name, it only reports a
> main thread for samples in other threads.
>
> Cc: Adrian Hunter <adrian.hunter@intel.com>
> Cc: David Ahern <dsahern@gmail.com>
> Cc: Stephane Eranian <eranian@google.com>
> Signed-off-by: Namhyung Kim <namhyung@kernel.org>

Acked-by: David Ahern <dsahern@gmail.com>


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

* Re: [PATCH] perf tools: Use tid for finding thread
  2014-05-07  2:26 [PATCH] perf tools: Use tid for finding thread Namhyung Kim
  2014-05-07 12:01 ` Stephane Eranian
  2014-05-07 14:49 ` David Ahern
@ 2014-05-11 13:15 ` Jiri Olsa
  2014-05-12  0:50   ` Namhyung Kim
  2 siblings, 1 reply; 5+ messages in thread
From: Jiri Olsa @ 2014-05-11 13:15 UTC (permalink / raw)
  To: Namhyung Kim
  Cc: Arnaldo Carvalho de Melo, Peter Zijlstra, Ingo Molnar,
	Paul Mackerras, Namhyung Kim, LKML, Adrian Hunter, David Ahern,
	Stephane Eranian

On Wed, May 07, 2014 at 11:26:06AM +0900, Namhyung Kim wrote:
> I believe that passing pid (instead of tid) as the 3rd arg of the
> machine__find*_thread() was to find a main thread so that it can
> search proper map group for symbols.  However with the map sharing
> patch applied, it now can do it in any thread.
> 
> It fixes a bug when each thread has different name, it only reports a
> main thread for samples in other threads.

and breaks tests 14 and 26 ;-)

...
14: Test matching and linking multiple hists               : FAILED!
15: Try 'use perf' in python, checking link problems       : Ok
16: Test breakpoint overflow signal handler                : Ok
17: Test breakpoint overflow sampling                      : Ok
18: Test number of exit event of a simple workload         : Ok
19: Test software clock events have valid period values    : Ok
20: Test converting perf time to TSC                       : Ok
21: Test object code reading                               : Ok
22: Test sample parsing                                    : Ok
23: Test using a dummy software event to keep tracking     : Ok
24: Test parsing with no sample_id_all bit set             : Ok
25: Test dwarf unwind                                      : Ok
26: Test filtering hist entries                            : FAILED!
...

jirka

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

* Re: [PATCH] perf tools: Use tid for finding thread
  2014-05-11 13:15 ` Jiri Olsa
@ 2014-05-12  0:50   ` Namhyung Kim
  0 siblings, 0 replies; 5+ messages in thread
From: Namhyung Kim @ 2014-05-12  0:50 UTC (permalink / raw)
  To: Jiri Olsa
  Cc: Arnaldo Carvalho de Melo, Peter Zijlstra, Ingo Molnar,
	Paul Mackerras, Namhyung Kim, LKML, Adrian Hunter, David Ahern,
	Stephane Eranian

On Sun, 11 May 2014 15:15:42 +0200, Jiri Olsa wrote:
> On Wed, May 07, 2014 at 11:26:06AM +0900, Namhyung Kim wrote:
>> I believe that passing pid (instead of tid) as the 3rd arg of the
>> machine__find*_thread() was to find a main thread so that it can
>> search proper map group for symbols.  However with the map sharing
>> patch applied, it now can do it in any thread.
>> 
>> It fixes a bug when each thread has different name, it only reports a
>> main thread for samples in other threads.
>
> and breaks tests 14 and 26 ;-)
>
> ...
> 14: Test matching and linking multiple hists               : FAILED!
> 15: Try 'use perf' in python, checking link problems       : Ok
> 16: Test breakpoint overflow signal handler                : Ok
> 17: Test breakpoint overflow sampling                      : Ok
> 18: Test number of exit event of a simple workload         : Ok
> 19: Test software clock events have valid period values    : Ok
> 20: Test converting perf time to TSC                       : Ok
> 21: Test object code reading                               : Ok
> 22: Test sample parsing                                    : Ok
> 23: Test using a dummy software event to keep tracking     : Ok
> 24: Test parsing with no sample_id_all bit set             : Ok
> 25: Test dwarf unwind                                      : Ok
> 26: Test filtering hist entries                            : FAILED!
> ...

Forgot to set sample->tid for those cases.  Will fix.

Thanks,
Namhyung

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

end of thread, other threads:[~2014-05-12  0:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-07  2:26 [PATCH] perf tools: Use tid for finding thread Namhyung Kim
2014-05-07 12:01 ` Stephane Eranian
2014-05-07 14:49 ` David Ahern
2014-05-11 13:15 ` Jiri Olsa
2014-05-12  0:50   ` Namhyung Kim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox