diff options
author | Josh Poimboeuf <jpoimboe@redhat.com> | 2017-04-13 17:59:15 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2017-04-16 22:48:05 +0200 |
commit | 77f8f39a2e463eca89a19b916189d0e4e38f75d8 (patch) | |
tree | f95afeb07529cedf1c504b436f186a3a45e80285 /kernel | |
parent | 72f04b50d61c81a2cc3065d3b973e83827760515 (diff) | |
download | linux-77f8f39a2e463eca89a19b916189d0e4e38f75d8.tar.bz2 |
livepatch: add missing printk newlines
Add missing newlines to some pr_err() strings.
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Acked-by: Miroslav Benes <mbenes@suse.cz>
Acked-by: Jessica Yu <jeyu@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/livepatch/core.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index b4b8bb012a93..8739e9e0bdb8 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -236,7 +236,7 @@ static int klp_resolve_symbols(Elf_Shdr *relasec, struct module *pmod) for (i = 0; i < relasec->sh_size / sizeof(Elf_Rela); i++) { sym = pmod->core_kallsyms.symtab + ELF_R_SYM(relas[i].r_info); if (sym->st_shndx != SHN_LIVEPATCH) { - pr_err("symbol %s is not marked as a livepatch symbol", + pr_err("symbol %s is not marked as a livepatch symbol\n", strtab + sym->st_name); return -EINVAL; } @@ -246,7 +246,7 @@ static int klp_resolve_symbols(Elf_Shdr *relasec, struct module *pmod) ".klp.sym.%55[^.].%127[^,],%lu", objname, symname, &sympos); if (cnt != 3) { - pr_err("symbol %s has an incorrectly formatted name", + pr_err("symbol %s has an incorrectly formatted name\n", strtab + sym->st_name); return -EINVAL; } @@ -291,7 +291,7 @@ static int klp_write_object_relocations(struct module *pmod, */ cnt = sscanf(secname, ".klp.rela.%55[^.]", sec_objname); if (cnt != 1) { - pr_err("section %s has an incorrectly formatted name", + pr_err("section %s has an incorrectly formatted name\n", secname); ret = -EINVAL; break; @@ -921,7 +921,7 @@ int klp_register_patch(struct klp_patch *patch) return -EINVAL; if (!is_livepatch_module(patch->mod)) { - pr_err("module %s is not marked as a livepatch module", + pr_err("module %s is not marked as a livepatch module\n", patch->mod->name); return -EINVAL; } |