linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][next] perf/benchmark: Fix spelling mistake "synchronious" -> "synchronous"
@ 2023-06-30  8:00 Colin Ian King
  2023-06-30 15:18 ` Ian Rogers
  2023-07-01 17:57 ` Namhyung Kim
  0 siblings, 2 replies; 5+ messages in thread
From: Colin Ian King @ 2023-06-30  8:00 UTC (permalink / raw)
  To: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Mark Rutland, Alexander Shishkin, Jiri Olsa, Namhyung Kim,
	Ian Rogers, Adrian Hunter, linux-perf-users
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in an option description. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/perf/bench/sched-seccomp-notify.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/bench/sched-seccomp-notify.c b/tools/perf/bench/sched-seccomp-notify.c
index eac4ef60090f..2e8205c61141 100644
--- a/tools/perf/bench/sched-seccomp-notify.c
+++ b/tools/perf/bench/sched-seccomp-notify.c
@@ -33,7 +33,7 @@ static bool sync_mode;
 static const struct option options[] = {
 	OPT_U64('l', "loop",	&loops,		"Specify number of loops"),
 	OPT_BOOLEAN('s', "sync-mode", &sync_mode,
-		    "Enable the synchronious mode for seccomp notifications"),
+		    "Enable the synchronous mode for seccomp notifications"),
 	OPT_END()
 };
 
-- 
2.39.2


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

* Re: [PATCH][next] perf/benchmark: Fix spelling mistake "synchronious" -> "synchronous"
  2023-06-30  8:00 [PATCH][next] perf/benchmark: Fix spelling mistake "synchronious" -> "synchronous" Colin Ian King
@ 2023-06-30 15:18 ` Ian Rogers
  2023-12-04 20:26   ` Arnaldo Carvalho de Melo
  2023-07-01 17:57 ` Namhyung Kim
  1 sibling, 1 reply; 5+ messages in thread
From: Ian Rogers @ 2023-06-30 15:18 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Mark Rutland, Alexander Shishkin, Jiri Olsa, Namhyung Kim,
	Adrian Hunter, linux-perf-users, kernel-janitors, linux-kernel

On Fri, Jun 30, 2023 at 1:00 AM Colin Ian King <colin.i.king@gmail.com> wrote:
>
> There is a spelling mistake in an option description. Fix it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Acked-by: Ian Rogers <irogers@google.com>

Thanks,
Ian

> ---
>  tools/perf/bench/sched-seccomp-notify.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/bench/sched-seccomp-notify.c b/tools/perf/bench/sched-seccomp-notify.c
> index eac4ef60090f..2e8205c61141 100644
> --- a/tools/perf/bench/sched-seccomp-notify.c
> +++ b/tools/perf/bench/sched-seccomp-notify.c
> @@ -33,7 +33,7 @@ static bool sync_mode;
>  static const struct option options[] = {
>         OPT_U64('l', "loop",    &loops,         "Specify number of loops"),
>         OPT_BOOLEAN('s', "sync-mode", &sync_mode,
> -                   "Enable the synchronious mode for seccomp notifications"),
> +                   "Enable the synchronous mode for seccomp notifications"),
>         OPT_END()
>  };
>
> --
> 2.39.2
>

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

* Re: [PATCH][next] perf/benchmark: Fix spelling mistake "synchronious" -> "synchronous"
  2023-06-30  8:00 [PATCH][next] perf/benchmark: Fix spelling mistake "synchronious" -> "synchronous" Colin Ian King
  2023-06-30 15:18 ` Ian Rogers
@ 2023-07-01 17:57 ` Namhyung Kim
  2023-12-04 20:27   ` Arnaldo Carvalho de Melo
  1 sibling, 1 reply; 5+ messages in thread
From: Namhyung Kim @ 2023-07-01 17:57 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Mark Rutland, Alexander Shishkin, Jiri Olsa, Ian Rogers,
	Adrian Hunter, linux-perf-users, kernel-janitors, linux-kernel

Hello,

On Fri, Jun 30, 2023 at 1:00 AM Colin Ian King <colin.i.king@gmail.com> wrote:
>
> There is a spelling mistake in an option description. Fix it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  tools/perf/bench/sched-seccomp-notify.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Hmm.. strange.  I cannot see the bench/sched-seccomp-notify.c.
Which tree are you based?

Thanks,
Namhyung


>
> diff --git a/tools/perf/bench/sched-seccomp-notify.c b/tools/perf/bench/sched-seccomp-notify.c
> index eac4ef60090f..2e8205c61141 100644
> --- a/tools/perf/bench/sched-seccomp-notify.c
> +++ b/tools/perf/bench/sched-seccomp-notify.c
> @@ -33,7 +33,7 @@ static bool sync_mode;
>  static const struct option options[] = {
>         OPT_U64('l', "loop",    &loops,         "Specify number of loops"),
>         OPT_BOOLEAN('s', "sync-mode", &sync_mode,
> -                   "Enable the synchronious mode for seccomp notifications"),
> +                   "Enable the synchronous mode for seccomp notifications"),
>         OPT_END()
>  };
>
> --
> 2.39.2
>

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

* Re: [PATCH][next] perf/benchmark: Fix spelling mistake "synchronious" -> "synchronous"
  2023-06-30 15:18 ` Ian Rogers
@ 2023-12-04 20:26   ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 5+ messages in thread
From: Arnaldo Carvalho de Melo @ 2023-12-04 20:26 UTC (permalink / raw)
  To: Ian Rogers
  Cc: Colin Ian King, Peter Zijlstra, Ingo Molnar, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, Adrian Hunter,
	linux-perf-users, kernel-janitors, linux-kernel

Em Fri, Jun 30, 2023 at 08:18:49AM -0700, Ian Rogers escreveu:
> On Fri, Jun 30, 2023 at 1:00 AM Colin Ian King <colin.i.king@gmail.com> wrote:
> >
> > There is a spelling mistake in an option description. Fix it.
> >
> > Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> 
> Acked-by: Ian Rogers <irogers@google.com>

Thanks, applied to perf-tools-next.

- Arnaldo


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

* Re: [PATCH][next] perf/benchmark: Fix spelling mistake "synchronious" -> "synchronous"
  2023-07-01 17:57 ` Namhyung Kim
@ 2023-12-04 20:27   ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 5+ messages in thread
From: Arnaldo Carvalho de Melo @ 2023-12-04 20:27 UTC (permalink / raw)
  To: Namhyung Kim
  Cc: Colin Ian King, Peter Zijlstra, Ingo Molnar, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Ian Rogers, Adrian Hunter,
	linux-perf-users, kernel-janitors, linux-kernel

Em Sat, Jul 01, 2023 at 10:57:33AM -0700, Namhyung Kim escreveu:
> Hello,
> 
> On Fri, Jun 30, 2023 at 1:00 AM Colin Ian King <colin.i.king@gmail.com> wrote:
> >
> > There is a spelling mistake in an option description. Fix it.
> >
> > Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> > ---
> >  tools/perf/bench/sched-seccomp-notify.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Hmm.. strange.  I cannot see the bench/sched-seccomp-notify.c.
> Which tree are you based?

It went thru a different tree, but I got this while looking for
Acked-by patches and finally applied it.

- Arnaldo
 
> Thanks,
> Namhyung
> 
> 
> >
> > diff --git a/tools/perf/bench/sched-seccomp-notify.c b/tools/perf/bench/sched-seccomp-notify.c
> > index eac4ef60090f..2e8205c61141 100644
> > --- a/tools/perf/bench/sched-seccomp-notify.c
> > +++ b/tools/perf/bench/sched-seccomp-notify.c
> > @@ -33,7 +33,7 @@ static bool sync_mode;
> >  static const struct option options[] = {
> >         OPT_U64('l', "loop",    &loops,         "Specify number of loops"),
> >         OPT_BOOLEAN('s', "sync-mode", &sync_mode,
> > -                   "Enable the synchronious mode for seccomp notifications"),
> > +                   "Enable the synchronous mode for seccomp notifications"),
> >         OPT_END()
> >  };
> >
> > --
> > 2.39.2
> >

-- 

- Arnaldo

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

end of thread, other threads:[~2023-12-04 20:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-30  8:00 [PATCH][next] perf/benchmark: Fix spelling mistake "synchronious" -> "synchronous" Colin Ian King
2023-06-30 15:18 ` Ian Rogers
2023-12-04 20:26   ` Arnaldo Carvalho de Melo
2023-07-01 17:57 ` Namhyung Kim
2023-12-04 20:27   ` 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).