All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][next] ftrace: fix spelling mistake "wakeing" -> "waking"
@ 2019-11-15  8:59 Colin King
  2019-11-15 15:54   ` Steven Rostedt
  0 siblings, 1 reply; 4+ messages in thread
From: Colin King @ 2019-11-15  8:59 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: kernel-janitors, linux-kernel

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

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

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

diff --git a/samples/ftrace/ftrace-direct.c b/samples/ftrace/ftrace-direct.c
index 1483f067b000..a2e3063bd306 100644
--- a/samples/ftrace/ftrace-direct.c
+++ b/samples/ftrace/ftrace-direct.c
@@ -6,7 +6,7 @@
 
 void my_direct_func(struct task_struct *p)
 {
-	trace_printk("wakeing up %s-%d\n", p->comm, p->pid);
+	trace_printk("waking up %s-%d\n", p->comm, p->pid);
 }
 
 extern void my_tramp(void *);
-- 
2.20.1


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

* Re: [PATCH][next] ftrace: fix spelling mistake "wakeing" -> "waking"
  2019-11-15  8:59 [PATCH][next] ftrace: fix spelling mistake "wakeing" -> "waking" Colin King
@ 2019-11-15 15:54   ` Steven Rostedt
  0 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2019-11-15 15:54 UTC (permalink / raw)
  To: Colin King; +Cc: kernel-janitors, linux-kernel

On Fri, 15 Nov 2019 08:59:38 +0000
Colin King <colin.king@canonical.com> wrote:

> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a trace_printk message. Fix it.

As this breaks the selftests, I'm folding this patch into the one that
you sent that updates the selftests as well.

-- Steve

> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  samples/ftrace/ftrace-direct.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/samples/ftrace/ftrace-direct.c b/samples/ftrace/ftrace-direct.c
> index 1483f067b000..a2e3063bd306 100644
> --- a/samples/ftrace/ftrace-direct.c
> +++ b/samples/ftrace/ftrace-direct.c
> @@ -6,7 +6,7 @@
>  
>  void my_direct_func(struct task_struct *p)
>  {
> -	trace_printk("wakeing up %s-%d\n", p->comm, p->pid);
> +	trace_printk("waking up %s-%d\n", p->comm, p->pid);
>  }
>  
>  extern void my_tramp(void *);


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

* Re: [PATCH][next] ftrace: fix spelling mistake "wakeing" -> "waking"
@ 2019-11-15 15:54   ` Steven Rostedt
  0 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2019-11-15 15:54 UTC (permalink / raw)
  To: Colin King; +Cc: kernel-janitors, linux-kernel

On Fri, 15 Nov 2019 08:59:38 +0000
Colin King <colin.king@canonical.com> wrote:

> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a trace_printk message. Fix it.

As this breaks the selftests, I'm folding this patch into the one that
you sent that updates the selftests as well.

-- Steve

> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  samples/ftrace/ftrace-direct.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/samples/ftrace/ftrace-direct.c b/samples/ftrace/ftrace-direct.c
> index 1483f067b000..a2e3063bd306 100644
> --- a/samples/ftrace/ftrace-direct.c
> +++ b/samples/ftrace/ftrace-direct.c
> @@ -6,7 +6,7 @@
>  
>  void my_direct_func(struct task_struct *p)
>  {
> -	trace_printk("wakeing up %s-%d\n", p->comm, p->pid);
> +	trace_printk("waking up %s-%d\n", p->comm, p->pid);
>  }
>  
>  extern void my_tramp(void *);

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

* Re: [PATCH][next] ftrace: fix spelling mistake "wakeing" -> "waking"
  2019-11-15 15:54   ` Steven Rostedt
  (?)
@ 2019-11-15 15:55   ` Colin Ian King
  -1 siblings, 0 replies; 4+ messages in thread
From: Colin Ian King @ 2019-11-15 15:55 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: kernel-janitors, linux-kernel

On 15/11/2019 15:54, Steven Rostedt wrote:
> On Fri, 15 Nov 2019 08:59:38 +0000
> Colin King <colin.king@canonical.com> wrote:
> 
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> There is a spelling mistake in a trace_printk message. Fix it.
> 
> As this breaks the selftests, I'm folding this patch into the one that
> you sent that updates the selftests as well.

OK, thanks for that, much appreciated.

Colin

> 
> -- Steve
> 
>>
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>> ---
>>  samples/ftrace/ftrace-direct.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/samples/ftrace/ftrace-direct.c b/samples/ftrace/ftrace-direct.c
>> index 1483f067b000..a2e3063bd306 100644
>> --- a/samples/ftrace/ftrace-direct.c
>> +++ b/samples/ftrace/ftrace-direct.c
>> @@ -6,7 +6,7 @@
>>  
>>  void my_direct_func(struct task_struct *p)
>>  {
>> -	trace_printk("wakeing up %s-%d\n", p->comm, p->pid);
>> +	trace_printk("waking up %s-%d\n", p->comm, p->pid);
>>  }
>>  
>>  extern void my_tramp(void *);
> 


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

end of thread, other threads:[~2019-11-15 15:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-15  8:59 [PATCH][next] ftrace: fix spelling mistake "wakeing" -> "waking" Colin King
2019-11-15 15:54 ` Steven Rostedt
2019-11-15 15:54   ` Steven Rostedt
2019-11-15 15:55   ` Colin Ian King

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.