linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] perf: add psw_idle and psw_idle_exit to list of idle symbols
@ 2020-07-07 17:14 Sven Schnelle
  2020-08-03 11:02 ` Sven Schnelle
  0 siblings, 1 reply; 3+ messages in thread
From: Sven Schnelle @ 2020-07-07 17:14 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Sven Schnelle, Peter Zijlstra, Ingo Molnar,
	Arnaldo Carvalho de Melo, Mark Rutland, Alexander Shishkin,
	Jiri Olsa, Namhyung Kim, Song Liu, Kim Phillips, Adrian Hunter,
	Ian Rogers, Igor Lubashev, Jin Yao, linux-kernel

Add the s390 idle functions so they don't show up in top when
using software sampling.

Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
---
 tools/perf/util/symbol.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
index 5ddf84dcbae7..d33d24c61d24 100644
--- a/tools/perf/util/symbol.c
+++ b/tools/perf/util/symbol.c
@@ -666,6 +666,8 @@ static bool symbol__is_idle(const char *name)
 		"poll_idle",
 		"ppc64_runlatch_off",
 		"pseries_dedicated_idle_sleep",
+		"psw_idle",
+		"psw_idle_exit",
 		NULL
 	};
 	int i;
-- 
2.17.1


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

* Re: [PATCH] perf: add psw_idle and psw_idle_exit to list of idle symbols
  2020-07-07 17:14 [PATCH] perf: add psw_idle and psw_idle_exit to list of idle symbols Sven Schnelle
@ 2020-08-03 11:02 ` Sven Schnelle
  2020-08-04 12:07   ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 3+ messages in thread
From: Sven Schnelle @ 2020-08-03 11:02 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Mark Rutland, Alexander Shishkin, Jiri Olsa, Namhyung Kim,
	Song Liu, Kim Phillips, Adrian Hunter, Ian Rogers, Igor Lubashev,
	Jin Yao, linux-kernel

Sven Schnelle <svens@linux.ibm.com> writes:

> Add the s390 idle functions so they don't show up in top when
> using software sampling.
>
> Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
> ---
>  tools/perf/util/symbol.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
> index 5ddf84dcbae7..d33d24c61d24 100644
> --- a/tools/perf/util/symbol.c
> +++ b/tools/perf/util/symbol.c
> @@ -666,6 +666,8 @@ static bool symbol__is_idle(const char *name)
>  		"poll_idle",
>  		"ppc64_runlatch_off",
>  		"pseries_dedicated_idle_sleep",
> +		"psw_idle",
> +		"psw_idle_exit",
>  		NULL
>  	};
>  	int i;

gentle ping?

Regards
Sven

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

* Re: [PATCH] perf: add psw_idle and psw_idle_exit to list of idle symbols
  2020-08-03 11:02 ` Sven Schnelle
@ 2020-08-04 12:07   ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2020-08-04 12:07 UTC (permalink / raw)
  To: Sven Schnelle
  Cc: Arnaldo Carvalho de Melo, Peter Zijlstra, Ingo Molnar,
	Mark Rutland, Alexander Shishkin, Jiri Olsa, Namhyung Kim,
	Song Liu, Kim Phillips, Adrian Hunter, Ian Rogers, Igor Lubashev,
	Jin Yao, linux-kernel

Em Mon, Aug 03, 2020 at 01:02:06PM +0200, Sven Schnelle escreveu:
> Sven Schnelle <svens@linux.ibm.com> writes:
> 
> > Add the s390 idle functions so they don't show up in top when
> > using software sampling.
> >
> > Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
> > ---
> >  tools/perf/util/symbol.c | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
> > index 5ddf84dcbae7..d33d24c61d24 100644
> > --- a/tools/perf/util/symbol.c
> > +++ b/tools/perf/util/symbol.c
> > @@ -666,6 +666,8 @@ static bool symbol__is_idle(const char *name)
> >  		"poll_idle",
> >  		"ppc64_runlatch_off",
> >  		"pseries_dedicated_idle_sleep",
> > +		"psw_idle",
> > +		"psw_idle_exit",
> >  		NULL
> >  	};
> >  	int i;
> 
> gentle ping?

This was merged already:


commit 19bf119ccfa071b73a54465e8082ab2c8f8c30eb
Author:     Sven Schnelle <svens@linux.ibm.com>
AuthorDate: Tue Jul 7 19:14:55 2020 +0200
Commit:     Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Tue Jul 7 16:44:57 2020 -0300

    perf symbols: Add s390 idle functions 'psw_idle' and 'psw_idle_exit' to list of idle symbols

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

end of thread, other threads:[~2020-08-04 12:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-07 17:14 [PATCH] perf: add psw_idle and psw_idle_exit to list of idle symbols Sven Schnelle
2020-08-03 11:02 ` Sven Schnelle
2020-08-04 12:07   ` Arnaldo Carvalho de Melo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).