From: Borislav Petkov Date: Fri, 7 Sep 2018 10:35:21 +0000 (+0200) Subject: jump_label: Fix typo in warning message X-Git-Tag: v4.19-rc4~5^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=da260fe12330be8b003c2ab07a112704163ea675;p=thirdparty%2Fkernel%2Flinux.git jump_label: Fix typo in warning message There's no 'allocatote' - use the next best thing: 'allocate' :-) Signed-off-by: Borislav Petkov Signed-off-by: Peter Zijlstra (Intel) Cc: Jason Baron Cc: Josh Poimboeuf Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Steven Rostedt (VMware) Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/20180907103521.31344-1-bp@alien8.de Signed-off-by: Ingo Molnar --- diff --git a/kernel/jump_label.c b/kernel/jump_label.c index 01ebdf1f9f40e..2e62503bea0d7 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;