All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] livepatch: add missing newline to error message
@ 2015-02-06 16:36 Josh Poimboeuf
  2015-02-06 20:29 ` Jiri Kosina
  0 siblings, 1 reply; 2+ messages in thread
From: Josh Poimboeuf @ 2015-02-06 16:36 UTC (permalink / raw)
  To: Seth Jennings, Jiri Kosina, Vojtech Pavlik; +Cc: live-patching, linux-kernel

Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
---
 kernel/livepatch/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c
index 9adf86b..ff7f47d 100644
--- a/kernel/livepatch/core.c
+++ b/kernel/livepatch/core.c
@@ -211,7 +211,7 @@ static int klp_verify_vmlinux_symbol(const char *name, unsigned long addr)
 	if (kallsyms_on_each_symbol(klp_verify_callback, &args))
 		return 0;
 
-	pr_err("symbol '%s' not found at specified address 0x%016lx, kernel mismatch?",
+	pr_err("symbol '%s' not found at specified address 0x%016lx, kernel mismatch?\n",
 		name, addr);
 	return -EINVAL;
 }
-- 
2.1.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] livepatch: add missing newline to error message
  2015-02-06 16:36 [PATCH] livepatch: add missing newline to error message Josh Poimboeuf
@ 2015-02-06 20:29 ` Jiri Kosina
  0 siblings, 0 replies; 2+ messages in thread
From: Jiri Kosina @ 2015-02-06 20:29 UTC (permalink / raw)
  To: Josh Poimboeuf; +Cc: Seth Jennings, Vojtech Pavlik, live-patching, linux-kernel

On Fri, 6 Feb 2015, Josh Poimboeuf wrote:

> Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
> ---
>  kernel/livepatch/core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c
> index 9adf86b..ff7f47d 100644
> --- a/kernel/livepatch/core.c
> +++ b/kernel/livepatch/core.c
> @@ -211,7 +211,7 @@ static int klp_verify_vmlinux_symbol(const char *name, unsigned long addr)
>  	if (kallsyms_on_each_symbol(klp_verify_callback, &args))
>  		return 0;
>  
> -	pr_err("symbol '%s' not found at specified address 0x%016lx, kernel mismatch?",
> +	pr_err("symbol '%s' not found at specified address 0x%016lx, kernel mismatch?\n",
>  		name, addr);
>  	return -EINVAL;

Applied, thanks Josh.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-02-06 20:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-06 16:36 [PATCH] livepatch: add missing newline to error message Josh Poimboeuf
2015-02-06 20:29 ` Jiri Kosina

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.