linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] perf jit: fix typo: "incalid" -> "invalid"
@ 2017-06-27 12:49 Colin King
  2017-06-27 14:54 ` Arnaldo Carvalho de Melo
  2017-07-01  8:49 ` [tip:perf/core] " tip-bot for Colin Ian King
  0 siblings, 2 replies; 5+ messages in thread
From: Colin King @ 2017-06-27 12:49 UTC (permalink / raw)
  To: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Alexander Shishkin, Dan Carpenter, Stephane Eranian
  Cc: linux-kernel

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

Trivial fix to typo in mlx4_dbg warnx warning message

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

diff --git a/tools/perf/jvmti/jvmti_agent.c b/tools/perf/jvmti/jvmti_agent.c
index e9651a9d670e..cf36de7ea255 100644
--- a/tools/perf/jvmti/jvmti_agent.c
+++ b/tools/perf/jvmti/jvmti_agent.c
@@ -304,7 +304,7 @@ jvmti_close(void *agent)
 	FILE *fp = agent;
 
 	if (!fp) {
-		warnx("jvmti: incalid fd in close_agent");
+		warnx("jvmti: invalid fd in close_agent");
 		return -1;
 	}
 
-- 
2.11.0

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

* Re: [PATCH] perf jit: fix typo: "incalid" -> "invalid"
  2017-06-27 12:49 [PATCH] perf jit: fix typo: "incalid" -> "invalid" Colin King
@ 2017-06-27 14:54 ` Arnaldo Carvalho de Melo
  2017-06-27 14:56   ` Colin Ian King
  2017-07-01  8:49 ` [tip:perf/core] " tip-bot for Colin Ian King
  1 sibling, 1 reply; 5+ messages in thread
From: Arnaldo Carvalho de Melo @ 2017-06-27 14:54 UTC (permalink / raw)
  To: Colin King
  Cc: Peter Zijlstra, Ingo Molnar, Alexander Shishkin, Dan Carpenter,
	Stephane Eranian, linux-kernel

Em Tue, Jun 27, 2017 at 01:49:17PM +0100, Colin King escreveu:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to typo in mlx4_dbg warnx warning message

Was this coccinele'd or otherwise automated? Would be nice to have this
described in the cset log, I'm replacing mlx4_dbg() with jvmti_close()
on this one, thanks,

- Arnaldo
 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  tools/perf/jvmti/jvmti_agent.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/perf/jvmti/jvmti_agent.c b/tools/perf/jvmti/jvmti_agent.c
> index e9651a9d670e..cf36de7ea255 100644
> --- a/tools/perf/jvmti/jvmti_agent.c
> +++ b/tools/perf/jvmti/jvmti_agent.c
> @@ -304,7 +304,7 @@ jvmti_close(void *agent)
>  	FILE *fp = agent;
>  
>  	if (!fp) {
> -		warnx("jvmti: incalid fd in close_agent");
> +		warnx("jvmti: invalid fd in close_agent");
>  		return -1;
>  	}
>  
> -- 
> 2.11.0

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

* Re: [PATCH] perf jit: fix typo: "incalid" -> "invalid"
  2017-06-27 14:54 ` Arnaldo Carvalho de Melo
@ 2017-06-27 14:56   ` Colin Ian King
  2017-06-27 19:08     ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 5+ messages in thread
From: Colin Ian King @ 2017-06-27 14:56 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Peter Zijlstra, Ingo Molnar, Alexander Shishkin, Dan Carpenter,
	Stephane Eranian, linux-kernel

On 27/06/17 15:54, Arnaldo Carvalho de Melo wrote:
> Em Tue, Jun 27, 2017 at 01:49:17PM +0100, Colin King escreveu:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> Trivial fix to typo in mlx4_dbg warnx warning message
> 
> Was this coccinele'd or otherwise automated? Would be nice to have this
> described in the cset log, I'm replacing mlx4_dbg() with jvmti_close()
> on this one, thanks,

It was badly automated by my grey cells.

> 
> - Arnaldo
>  
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>> ---
>>  tools/perf/jvmti/jvmti_agent.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/tools/perf/jvmti/jvmti_agent.c b/tools/perf/jvmti/jvmti_agent.c
>> index e9651a9d670e..cf36de7ea255 100644
>> --- a/tools/perf/jvmti/jvmti_agent.c
>> +++ b/tools/perf/jvmti/jvmti_agent.c
>> @@ -304,7 +304,7 @@ jvmti_close(void *agent)
>>  	FILE *fp = agent;
>>  
>>  	if (!fp) {
>> -		warnx("jvmti: incalid fd in close_agent");
>> +		warnx("jvmti: invalid fd in close_agent");
>>  		return -1;
>>  	}
>>  
>> -- 
>> 2.11.0

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

* Re: [PATCH] perf jit: fix typo: "incalid" -> "invalid"
  2017-06-27 14:56   ` Colin Ian King
@ 2017-06-27 19:08     ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 5+ messages in thread
From: Arnaldo Carvalho de Melo @ 2017-06-27 19:08 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Peter Zijlstra, Ingo Molnar, Alexander Shishkin, Dan Carpenter,
	Stephane Eranian, linux-kernel

Em Tue, Jun 27, 2017 at 03:56:05PM +0100, Colin Ian King escreveu:
> On 27/06/17 15:54, Arnaldo Carvalho de Melo wrote:
> > Em Tue, Jun 27, 2017 at 01:49:17PM +0100, Colin King escreveu:
> >> From: Colin Ian King <colin.king@canonical.com>
> >>
> >> Trivial fix to typo in mlx4_dbg warnx warning message
> > 
> > Was this coccinele'd or otherwise automated? Would be nice to have this
> > described in the cset log, I'm replacing mlx4_dbg() with jvmti_close()
> > on this one, thanks,
> 
> It was badly automated by my grey cells.

:-)

Mine fail from time to time as well, no biggie.

- Arnaldo

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

* [tip:perf/core] perf jit: fix typo: "incalid" -> "invalid"
  2017-06-27 12:49 [PATCH] perf jit: fix typo: "incalid" -> "invalid" Colin King
  2017-06-27 14:54 ` Arnaldo Carvalho de Melo
@ 2017-07-01  8:49 ` tip-bot for Colin Ian King
  1 sibling, 0 replies; 5+ messages in thread
From: tip-bot for Colin Ian King @ 2017-07-01  8:49 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, colin.king, acme, eranian, tglx,
	alexander.shishkin, peterz, mingo, dan.carpenter, hpa

Commit-ID:  19f0edb980a0f66ccd80b712dadb0239782f8af5
Gitweb:     http://git.kernel.org/tip/19f0edb980a0f66ccd80b712dadb0239782f8af5
Author:     Colin Ian King <colin.king@canonical.com>
AuthorDate: Tue, 27 Jun 2017 13:49:17 +0100
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Tue, 27 Jun 2017 11:55:06 -0300

perf jit: fix typo: "incalid" -> "invalid"

Trivial fix to typo in jvmti_close() warnx warning message.

Signed-off-by: Colin King <colin.king@canonical.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/20170627124917.19151-1-colin.king@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/jvmti/jvmti_agent.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/jvmti/jvmti_agent.c b/tools/perf/jvmti/jvmti_agent.c
index e9651a9..cf36de7 100644
--- a/tools/perf/jvmti/jvmti_agent.c
+++ b/tools/perf/jvmti/jvmti_agent.c
@@ -304,7 +304,7 @@ jvmti_close(void *agent)
 	FILE *fp = agent;
 
 	if (!fp) {
-		warnx("jvmti: incalid fd in close_agent");
+		warnx("jvmti: invalid fd in close_agent");
 		return -1;
 	}
 

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

end of thread, other threads:[~2017-07-01  8:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-27 12:49 [PATCH] perf jit: fix typo: "incalid" -> "invalid" Colin King
2017-06-27 14:54 ` Arnaldo Carvalho de Melo
2017-06-27 14:56   ` Colin Ian King
2017-06-27 19:08     ` Arnaldo Carvalho de Melo
2017-07-01  8:49 ` [tip:perf/core] " tip-bot 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).