Merge tag 'livepatching-for-6.7' of git://git.kernel.org/pub/scm/linux/kernel/git...
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 3 Nov 2023 17:21:54 +0000 (07:21 -1000)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 3 Nov 2023 17:21:54 +0000 (07:21 -1000)
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()

kernel/livepatch/core.c

index 61328328c474c05dcff7a57dbda49e6bf4bb41f7..ecbc9b6aba3a10bcadecac960bf6ee09f2419d20 100644 (file)
@@ -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;
                }