linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] jump_label: Fix typo in warning message
@ 2018-09-07 10:35 Borislav Petkov
  2018-09-07 11:39 ` Peter Zijlstra
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Borislav Petkov @ 2018-09-07 10:35 UTC (permalink / raw)
  To: LKML
  Cc: X86 ML, Ingo Molnar, Josh Poimboeuf, Peter Zijlstra,
	Steven Rostedt (VMware),
	Jason Baron

From: Borislav Petkov <bp@suse.de>

There's no 'allocatote' - use the next best thing: 'allocate' :-)

Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
Cc: Jason Baron <jbaron@akamai.com>
---
 kernel/jump_label.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/jump_label.c b/kernel/jump_label.c
index 01ebdf1f9f40..2e62503bea0d 100644
--- a/kernel/jump_label.c
+++ b/kernel/jump_label.c
@@ -678,7 +678,7 @@ jump_label_module_notify(struct notifier_block *self, unsigned long val,
 	case MODULE_STATE_COMING:
 		ret = jump_label_add_module(mod);
 		if (ret) {
-			WARN(1, "Failed to allocatote memory: jump_label may not work properly.\n");
+			WARN(1, "Failed to allocate memory: jump_label may not work properly.\n");
 			jump_label_del_module(mod);
 		}
 		break;
-- 
2.17.0.582.gccdcbd54c


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

* Re: [PATCH] jump_label: Fix typo in warning message
  2018-09-07 10:35 [PATCH] jump_label: Fix typo in warning message Borislav Petkov
@ 2018-09-07 11:39 ` Peter Zijlstra
  2018-09-07 15:19 ` Steven Rostedt
  2018-09-10 10:08 ` [tip:locking/core] " tip-bot for Borislav Petkov
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Zijlstra @ 2018-09-07 11:39 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: LKML, X86 ML, Ingo Molnar, Josh Poimboeuf,
	Steven Rostedt (VMware),
	Jason Baron

On Fri, Sep 07, 2018 at 12:35:21PM +0200, Borislav Petkov wrote:
> From: Borislav Petkov <bp@suse.de>
> 
> There's no 'allocatote' - use the next best thing: 'allocate' :-)

There damn well should be ;-)

Thanks!

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

* Re: [PATCH] jump_label: Fix typo in warning message
  2018-09-07 10:35 [PATCH] jump_label: Fix typo in warning message Borislav Petkov
  2018-09-07 11:39 ` Peter Zijlstra
@ 2018-09-07 15:19 ` Steven Rostedt
  2018-09-10 10:08 ` [tip:locking/core] " tip-bot for Borislav Petkov
  2 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2018-09-07 15:19 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: LKML, X86 ML, Ingo Molnar, Josh Poimboeuf, Peter Zijlstra,
	Jason Baron, trivial

On Fri,  7 Sep 2018 12:35:21 +0200
Borislav Petkov <bp@alien8.de> wrote:

> From: Borislav Petkov <bp@suse.de>
> 
> There's no 'allocatote' - use the next best thing: 'allocate' :-)

Nice.

Probably can go through the trivial tree (Cc'd).

Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>

-- Steve

> 
> Signed-off-by: Borislav Petkov <bp@suse.de>
> Cc: Ingo Molnar <mingo@kernel.org>
> Cc: Josh Poimboeuf <jpoimboe@redhat.com>
> Cc: Peter Zijlstra <peterz@infradead.org>
> Cc: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
> Cc: Jason Baron <jbaron@akamai.com>
> ---
>  kernel/jump_label.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/kernel/jump_label.c b/kernel/jump_label.c
> index 01ebdf1f9f40..2e62503bea0d 100644
> --- a/kernel/jump_label.c
> +++ b/kernel/jump_label.c
> @@ -678,7 +678,7 @@ jump_label_module_notify(struct notifier_block *self, unsigned long val,
>  	case MODULE_STATE_COMING:
>  		ret = jump_label_add_module(mod);
>  		if (ret) {
> -			WARN(1, "Failed to allocatote memory: jump_label may not work properly.\n");
> +			WARN(1, "Failed to allocate memory: jump_label may not work properly.\n");
>  			jump_label_del_module(mod);
>  		}
>  		break;


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

* [tip:locking/core] jump_label: Fix typo in warning message
  2018-09-07 10:35 [PATCH] jump_label: Fix typo in warning message Borislav Petkov
  2018-09-07 11:39 ` Peter Zijlstra
  2018-09-07 15:19 ` Steven Rostedt
@ 2018-09-10 10:08 ` tip-bot for Borislav Petkov
  2 siblings, 0 replies; 4+ messages in thread
From: tip-bot for Borislav Petkov @ 2018-09-10 10:08 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: torvalds, tglx, peterz, rostedt, bp, mingo, linux-kernel, jbaron,
	jpoimboe, hpa

Commit-ID:  da260fe12330be8b003c2ab07a112704163ea675
Gitweb:     https://git.kernel.org/tip/da260fe12330be8b003c2ab07a112704163ea675
Author:     Borislav Petkov <bp@suse.de>
AuthorDate: Fri, 7 Sep 2018 12:35:21 +0200
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Mon, 10 Sep 2018 10:15:48 +0200

jump_label: Fix typo in warning message

There's no 'allocatote' - use the next best thing: 'allocate' :-)

Signed-off-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Jason Baron <jbaron@akamai.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steven Rostedt (VMware) <rostedt@goodmis.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20180907103521.31344-1-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 kernel/jump_label.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/jump_label.c b/kernel/jump_label.c
index 01ebdf1f9f40..2e62503bea0d 100644
--- a/kernel/jump_label.c
+++ b/kernel/jump_label.c
@@ -678,7 +678,7 @@ jump_label_module_notify(struct notifier_block *self, unsigned long val,
 	case MODULE_STATE_COMING:
 		ret = jump_label_add_module(mod);
 		if (ret) {
-			WARN(1, "Failed to allocatote memory: jump_label may not work properly.\n");
+			WARN(1, "Failed to allocate memory: jump_label may not work properly.\n");
 			jump_label_del_module(mod);
 		}
 		break;

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

end of thread, other threads:[~2018-09-10 10:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-07 10:35 [PATCH] jump_label: Fix typo in warning message Borislav Petkov
2018-09-07 11:39 ` Peter Zijlstra
2018-09-07 15:19 ` Steven Rostedt
2018-09-10 10:08 ` [tip:locking/core] " tip-bot for Borislav Petkov

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