From: Linus Torvalds Date: Fri, 3 Nov 2023 17:21:54 +0000 (-1000) Subject: Merge tag 'livepatching-for-6.7' of git://git.kernel.org/pub/scm/linux/kernel/git... X-Git-Tag: 6.7-rc-smb3-client-fixes-part2~38 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=00657bb3dbecee324336e1da1ad71b670b6aee60;hp=9a719c2145c9942d1215c05a954dd4bf6c9587e7;p=sfrench%2Fcifs-2.6.git Merge tag 'livepatching-for-6.7' of git://git./linux/kernel/git/livepatching/livepatching Pull livepatching update from Petr Mladek: - Add missing newline character to avoid waiting for a continuous message * tag 'livepatching-for-6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching: livepatch: Fix missing newline character in klp_resolve_symbols() --- diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index 61328328c474..ecbc9b6aba3a 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -243,7 +243,7 @@ static int klp_resolve_symbols(Elf_Shdr *sechdrs, const char *strtab, * symbols are exported and normal relas can be used instead. */ if (!sec_vmlinux && sym_vmlinux) { - pr_err("invalid access to vmlinux symbol '%s' from module-specific livepatch relocation section", + pr_err("invalid access to vmlinux symbol '%s' from module-specific livepatch relocation section\n", sym_name); return -EINVAL; }