linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] perf: Replace lkml.org links with lore
@ 2021-02-10 23:42 Kees Cook
  2021-02-11  9:17 ` Namhyung Kim
  2021-02-11 10:11 ` Peter Zijlstra
  0 siblings, 2 replies; 4+ messages in thread
From: Kees Cook @ 2021-02-10 23:42 UTC (permalink / raw)
  To: linux-kernel, Peter Zijlstra
  Cc: Kees Cook, Ingo Molnar, Arnaldo Carvalho de Melo, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, Joe Perches

As started by commit 05a5f51ca566 ("Documentation: Replace lkml.org
links with lore"), replace lkml.org links with lore to better use a
single source that's more likely to stay available long-term.

Signed-off-by: Kees Cook <keescook@chromium.org>
---
 tools/perf/Documentation/examples.txt | 2 +-
 tools/perf/util/data-convert-bt.c     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/perf/Documentation/examples.txt b/tools/perf/Documentation/examples.txt
index a4e392156488..c0d22fbe9201 100644
--- a/tools/perf/Documentation/examples.txt
+++ b/tools/perf/Documentation/examples.txt
@@ -3,7 +3,7 @@
 		****** perf by examples ******
 		------------------------------
 
-[ From an e-mail by Ingo Molnar, http://lkml.org/lkml/2009/8/4/346 ]
+[ From an e-mail by Ingo Molnar, https://lore.kernel.org/lkml/20090804195717.GA5998@elte.hu ]
 
 
 First, discovery/enumeration of available counters can be done via
diff --git a/tools/perf/util/data-convert-bt.c b/tools/perf/util/data-convert-bt.c
index 27c5fef9ad54..8b67bd97d122 100644
--- a/tools/perf/util/data-convert-bt.c
+++ b/tools/perf/util/data-convert-bt.c
@@ -948,7 +948,7 @@ static char *change_name(char *name, char *orig_name, int dup)
 		goto out;
 	/*
 	 * Add '_' prefix to potential keywork.  According to
-	 * Mathieu Desnoyers (https://lkml.org/lkml/2015/1/23/652),
+	 * Mathieu Desnoyers (https://lore.kernel.org/lkml/1074266107.40857.1422045946295.JavaMail.zimbra@efficios.com),
 	 * futher CTF spec updating may require us to use '$'.
 	 */
 	if (dup < 0)
-- 
2.25.1


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

* Re: [PATCH] perf: Replace lkml.org links with lore
  2021-02-10 23:42 [PATCH] perf: Replace lkml.org links with lore Kees Cook
@ 2021-02-11  9:17 ` Namhyung Kim
  2021-02-11 10:11 ` Peter Zijlstra
  1 sibling, 0 replies; 4+ messages in thread
From: Namhyung Kim @ 2021-02-11  9:17 UTC (permalink / raw)
  To: Kees Cook
  Cc: linux-kernel, Peter Zijlstra, Ingo Molnar,
	Arnaldo Carvalho de Melo, Mark Rutland, Alexander Shishkin,
	Jiri Olsa, Joe Perches

Hello,

On Thu, Feb 11, 2021 at 8:42 AM Kees Cook <keescook@chromium.org> wrote:
>
> As started by commit 05a5f51ca566 ("Documentation: Replace lkml.org
> links with lore"), replace lkml.org links with lore to better use a
> single source that's more likely to stay available long-term.
>
> Signed-off-by: Kees Cook <keescook@chromium.org>

Acked-by: Namhyung Kim <namhyung@kernel.org>

Thanks,
Namhyung

> ---
>  tools/perf/Documentation/examples.txt | 2 +-
>  tools/perf/util/data-convert-bt.c     | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/perf/Documentation/examples.txt b/tools/perf/Documentation/examples.txt
> index a4e392156488..c0d22fbe9201 100644
> --- a/tools/perf/Documentation/examples.txt
> +++ b/tools/perf/Documentation/examples.txt
> @@ -3,7 +3,7 @@
>                 ****** perf by examples ******
>                 ------------------------------
>
> -[ From an e-mail by Ingo Molnar, http://lkml.org/lkml/2009/8/4/346 ]
> +[ From an e-mail by Ingo Molnar, https://lore.kernel.org/lkml/20090804195717.GA5998@elte.hu ]
>
>
>  First, discovery/enumeration of available counters can be done via
> diff --git a/tools/perf/util/data-convert-bt.c b/tools/perf/util/data-convert-bt.c
> index 27c5fef9ad54..8b67bd97d122 100644
> --- a/tools/perf/util/data-convert-bt.c
> +++ b/tools/perf/util/data-convert-bt.c
> @@ -948,7 +948,7 @@ static char *change_name(char *name, char *orig_name, int dup)
>                 goto out;
>         /*
>          * Add '_' prefix to potential keywork.  According to
> -        * Mathieu Desnoyers (https://lkml.org/lkml/2015/1/23/652),
> +        * Mathieu Desnoyers (https://lore.kernel.org/lkml/1074266107.40857.1422045946295.JavaMail.zimbra@efficios.com),
>          * futher CTF spec updating may require us to use '$'.
>          */
>         if (dup < 0)
> --
> 2.25.1
>

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

* Re: [PATCH] perf: Replace lkml.org links with lore
  2021-02-10 23:42 [PATCH] perf: Replace lkml.org links with lore Kees Cook
  2021-02-11  9:17 ` Namhyung Kim
@ 2021-02-11 10:11 ` Peter Zijlstra
  2021-02-11 12:54   ` Arnaldo Carvalho de Melo
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Zijlstra @ 2021-02-11 10:11 UTC (permalink / raw)
  To: Kees Cook
  Cc: linux-kernel, Ingo Molnar, Arnaldo Carvalho de Melo,
	Mark Rutland, Alexander Shishkin, Jiri Olsa, Namhyung Kim,
	Joe Perches

On Wed, Feb 10, 2021 at 03:42:19PM -0800, Kees Cook wrote:
> As started by commit 05a5f51ca566 ("Documentation: Replace lkml.org
> links with lore"), replace lkml.org links with lore to better use a
> single source that's more likely to stay available long-term.
> 
> Signed-off-by: Kees Cook <keescook@chromium.org>

Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>

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

* Re: [PATCH] perf: Replace lkml.org links with lore
  2021-02-11 10:11 ` Peter Zijlstra
@ 2021-02-11 12:54   ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2021-02-11 12:54 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Kees Cook, linux-kernel, Ingo Molnar, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, Joe Perches

Em Thu, Feb 11, 2021 at 11:11:19AM +0100, Peter Zijlstra escreveu:
> On Wed, Feb 10, 2021 at 03:42:19PM -0800, Kees Cook wrote:
> > As started by commit 05a5f51ca566 ("Documentation: Replace lkml.org
> > links with lore"), replace lkml.org links with lore to better use a
> > single source that's more likely to stay available long-term.
> > 
> > Signed-off-by: Kees Cook <keescook@chromium.org>
> 
> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>

Thanks, applied.

- Arnaldo

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

end of thread, other threads:[~2021-02-11 13:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-10 23:42 [PATCH] perf: Replace lkml.org links with lore Kees Cook
2021-02-11  9:17 ` Namhyung Kim
2021-02-11 10:11 ` Peter Zijlstra
2021-02-11 12:54   ` 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).