Skip to content

Commit da260fe

Browse files
suryasaimadhuIngo Molnar
authored andcommitted
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>
1 parent e13e236 commit da260fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/jump_label.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ jump_label_module_notify(struct notifier_block *self, unsigned long val,
678678
case MODULE_STATE_COMING:
679679
ret = jump_label_add_module(mod);
680680
if (ret) {
681-
WARN(1, "Failed to allocatote memory: jump_label may not work properly.\n");
681+
WARN(1, "Failed to allocate memory: jump_label may not work properly.\n");
682682
jump_label_del_module(mod);
683683
}
684684
break;

0 commit comments

Comments
 (0)