2024-04-23 20:03:29

by Arnaldo Carvalho de Melo

[permalink] [raw]
Subject: [PATCH 1/1] perf tests shell kprobes: Add missing description as used by 'perf test' output

Before:

root@x1:~# perf test 76
76: SPDX-License-Identifier: GPL-2.0 : Ok
root@x1:~#

After:

root@x1:~# perf test 76
76: Add 'perf probe's, list and remove them. : Ok
root@x1:~#

Cc: Adrian Hunter <[email protected]>
Cc: Athira Rajeev <[email protected]>
Cc: Ian Rogers <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Kajol Jain <[email protected]>
Cc: Michael Petlan <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Veronika Molnarova <[email protected]>
Link: https://lore.kernel.org/lkml/
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
---
tools/perf/tests/shell/base_probe/test_adding_kernel.sh | 1 +
1 file changed, 1 insertion(+)

diff --git a/tools/perf/tests/shell/base_probe/test_adding_kernel.sh b/tools/perf/tests/shell/base_probe/test_adding_kernel.sh
index a5d707efad85cb40..63bb8974b38e0b0d 100755
--- a/tools/perf/tests/shell/base_probe/test_adding_kernel.sh
+++ b/tools/perf/tests/shell/base_probe/test_adding_kernel.sh
@@ -1,4 +1,5 @@
#!/bin/bash
+# Add 'perf probe's, list and remove them
# SPDX-License-Identifier: GPL-2.0

#
--
2.44.0



2024-04-23 21:53:53

by Ian Rogers

[permalink] [raw]
Subject: Re: [PATCH 1/1] perf tests shell kprobes: Add missing description as used by 'perf test' output

On Tue, Apr 23, 2024 at 12:50 PM Arnaldo Carvalho de Melo
<[email protected]> wrote:
>
> Before:
>
> root@x1:~# perf test 76
> 76: SPDX-License-Identifier: GPL-2.0 : Ok
> root@x1:~#
>
> After:
>
> root@x1:~# perf test 76
> 76: Add 'perf probe's, list and remove them. : Ok
> root@x1:~#
>
> Cc: Adrian Hunter <[email protected]>
> Cc: Athira Rajeev <[email protected]>
> Cc: Ian Rogers <[email protected]>
> Cc: Jiri Olsa <[email protected]>
> Cc: Kajol Jain <[email protected]>
> Cc: Michael Petlan <[email protected]>
> Cc: Namhyung Kim <[email protected]>
> Cc: Veronika Molnarova <[email protected]>
> Link: https://lore.kernel.org/lkml/
> Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

Reviewed-by: Ian Rogers <[email protected]>

Thanks,
Ian

> ---
> tools/perf/tests/shell/base_probe/test_adding_kernel.sh | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/tools/perf/tests/shell/base_probe/test_adding_kernel.sh b/tools/perf/tests/shell/base_probe/test_adding_kernel.sh
> index a5d707efad85cb40..63bb8974b38e0b0d 100755
> --- a/tools/perf/tests/shell/base_probe/test_adding_kernel.sh
> +++ b/tools/perf/tests/shell/base_probe/test_adding_kernel.sh
> @@ -1,4 +1,5 @@
> #!/bin/bash
> +# Add 'perf probe's, list and remove them
> # SPDX-License-Identifier: GPL-2.0
>
> #
> --
> 2.44.0
>

2024-04-24 14:24:32

by Arnaldo Carvalho de Melo

[permalink] [raw]
Subject: Re: [PATCH 1/1] perf tests shell kprobes: Add missing description as used by 'perf test' output

On Tue, Apr 23, 2024 at 02:48:00PM -0700, Ian Rogers wrote:
> On Tue, Apr 23, 2024 at 12:50 PM Arnaldo Carvalho de Melo
> <[email protected]> wrote:
> >
> > Before:
> >
> > root@x1:~# perf test 76
> > 76: SPDX-License-Identifier: GPL-2.0 : Ok
> > root@x1:~#
> >
> > After:
> >
> > root@x1:~# perf test 76
> > 76: Add 'perf probe's, list and remove them. : Ok
> > root@x1:~#
> >
> > Cc: Adrian Hunter <[email protected]>
> > Cc: Athira Rajeev <[email protected]>
> > Cc: Ian Rogers <[email protected]>
> > Cc: Jiri Olsa <[email protected]>
> > Cc: Kajol Jain <[email protected]>
> > Cc: Michael Petlan <[email protected]>
> > Cc: Namhyung Kim <[email protected]>
> > Cc: Veronika Molnarova <[email protected]>
> > Link: https://lore.kernel.org/lkml/
> > Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
>
> Reviewed-by: Ian Rogers <[email protected]>

Thanks, added to the cset.

- Arnaldo