linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] perf test: fix spelling mistake "allos" -> "allocate"
@ 2019-09-11 15:21 Colin King
  2019-09-17  7:42 ` Mukesh Ojha
  2019-09-20 16:20 ` [tip: perf/urgent] perf test: Fix " tip-bot2 for Colin Ian King
  0 siblings, 2 replies; 4+ messages in thread
From: Colin King @ 2019-09-11 15:21 UTC (permalink / raw)
  To: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a TEST_ASSERT_VAL message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 tools/perf/tests/event_update.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/tests/event_update.c b/tools/perf/tests/event_update.c
index cac4290e233a..7f0868a31a7f 100644
--- a/tools/perf/tests/event_update.c
+++ b/tools/perf/tests/event_update.c
@@ -92,7 +92,7 @@ int test__event_update(struct test *test __maybe_unused, int subtest __maybe_unu
 
 	evsel = perf_evlist__first(evlist);
 
-	TEST_ASSERT_VAL("failed to allos ids",
+	TEST_ASSERT_VAL("failed to allocate ids",
 			!perf_evsel__alloc_id(evsel, 1, 1));
 
 	perf_evlist__id_add(evlist, evsel, 0, 0, 123);
-- 
2.20.1


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

* Re: [PATCH] perf test: fix spelling mistake "allos" -> "allocate"
  2019-09-11 15:21 [PATCH] perf test: fix spelling mistake "allos" -> "allocate" Colin King
@ 2019-09-17  7:42 ` Mukesh Ojha
  2019-09-18 23:09   ` Arnaldo Carvalho de Melo
  2019-09-20 16:20 ` [tip: perf/urgent] perf test: Fix " tip-bot2 for Colin Ian King
  1 sibling, 1 reply; 4+ messages in thread
From: Mukesh Ojha @ 2019-09-17  7:42 UTC (permalink / raw)
  To: Colin King, Peter Zijlstra, Ingo Molnar,
	Arnaldo Carvalho de Melo, Alexander Shishkin, Jiri Olsa,
	Namhyung Kim
  Cc: kernel-janitors, linux-kernel


On 9/11/2019 8:51 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> There is a spelling mistake in a TEST_ASSERT_VAL message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Thanks,
Mukesh

> ---
>   tools/perf/tests/event_update.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/tests/event_update.c b/tools/perf/tests/event_update.c
> index cac4290e233a..7f0868a31a7f 100644
> --- a/tools/perf/tests/event_update.c
> +++ b/tools/perf/tests/event_update.c
> @@ -92,7 +92,7 @@ int test__event_update(struct test *test __maybe_unused, int subtest __maybe_unu
>   
>   	evsel = perf_evlist__first(evlist);
>   
> -	TEST_ASSERT_VAL("failed to allos ids",
> +	TEST_ASSERT_VAL("failed to allocate ids",
>   			!perf_evsel__alloc_id(evsel, 1, 1));
>   
>   	perf_evlist__id_add(evlist, evsel, 0, 0, 123);

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

* Re: [PATCH] perf test: fix spelling mistake "allos" -> "allocate"
  2019-09-17  7:42 ` Mukesh Ojha
@ 2019-09-18 23:09   ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2019-09-18 23:09 UTC (permalink / raw)
  To: Mukesh Ojha
  Cc: Colin King, Peter Zijlstra, Ingo Molnar, Alexander Shishkin,
	Jiri Olsa, Namhyung Kim, kernel-janitors, linux-kernel

Em Tue, Sep 17, 2019 at 01:12:46PM +0530, Mukesh Ojha escreveu:
> 
> On 9/11/2019 8:51 PM, Colin King wrote:
> > From: Colin Ian King <colin.king@canonical.com>
> > 
> > There is a spelling mistake in a TEST_ASSERT_VAL message. Fix it.
> > 
> > Signed-off-by: Colin Ian King <colin.king@canonical.com>
> 
> Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Thanks, applied.
 
> Thanks,
> Mukesh
> 
> > ---
> >   tools/perf/tests/event_update.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/tools/perf/tests/event_update.c b/tools/perf/tests/event_update.c
> > index cac4290e233a..7f0868a31a7f 100644
> > --- a/tools/perf/tests/event_update.c
> > +++ b/tools/perf/tests/event_update.c
> > @@ -92,7 +92,7 @@ int test__event_update(struct test *test __maybe_unused, int subtest __maybe_unu
> >   	evsel = perf_evlist__first(evlist);
> > -	TEST_ASSERT_VAL("failed to allos ids",
> > +	TEST_ASSERT_VAL("failed to allocate ids",
> >   			!perf_evsel__alloc_id(evsel, 1, 1));
> >   	perf_evlist__id_add(evlist, evsel, 0, 0, 123);

-- 

- Arnaldo

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

* [tip: perf/urgent] perf test: Fix spelling mistake "allos" -> "allocate"
  2019-09-11 15:21 [PATCH] perf test: fix spelling mistake "allos" -> "allocate" Colin King
  2019-09-17  7:42 ` Mukesh Ojha
@ 2019-09-20 16:20 ` tip-bot2 for Colin Ian King
  1 sibling, 0 replies; 4+ messages in thread
From: tip-bot2 for Colin Ian King @ 2019-09-20 16:20 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Colin King, Mukesh Ojha, Alexander Shishkin, Jiri Olsa,
	Namhyung Kim, Peter Zijlstra, kernel-janitors,
	Arnaldo Carvalho de Melo, Ingo Molnar, Borislav Petkov,
	linux-kernel

The following commit has been merged into the perf/urgent branch of tip:

Commit-ID:     ce095c9ac293d1683f9fedb214811727dff0d508
Gitweb:        https://git.kernel.org/tip/ce095c9ac293d1683f9fedb214811727dff0d508
Author:        Colin Ian King <colin.king@canonical.com>
AuthorDate:    Wed, 11 Sep 2019 16:21:48 +01:00
Committer:     Arnaldo Carvalho de Melo <acme@redhat.com>
CommitterDate: Fri, 20 Sep 2019 10:28:26 -03:00

perf test: Fix spelling mistake "allos" -> "allocate"

There is a spelling mistake in a TEST_ASSERT_VAL message. Fix it.

Signed-off-by: Colin King <colin.king@canonical.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: kernel-janitors@vger.kernel.org
Link: http://lore.kernel.org/lkml/20190911152148.17031-1-colin.king@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/tests/event_update.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/tests/event_update.c b/tools/perf/tests/event_update.c
index 4bb772e..0497d90 100644
--- a/tools/perf/tests/event_update.c
+++ b/tools/perf/tests/event_update.c
@@ -94,7 +94,7 @@ int test__event_update(struct test *test __maybe_unused, int subtest __maybe_unu
 
 	evsel = perf_evlist__first(evlist);
 
-	TEST_ASSERT_VAL("failed to allos ids",
+	TEST_ASSERT_VAL("failed to allocate ids",
 			!perf_evsel__alloc_id(evsel, 1, 1));
 
 	perf_evlist__id_add(evlist, evsel, 0, 0, 123);

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

end of thread, other threads:[~2019-09-20 16:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-11 15:21 [PATCH] perf test: fix spelling mistake "allos" -> "allocate" Colin King
2019-09-17  7:42 ` Mukesh Ojha
2019-09-18 23:09   ` Arnaldo Carvalho de Melo
2019-09-20 16:20 ` [tip: perf/urgent] perf test: Fix " tip-bot2 for Colin Ian King

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).