linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tracing/syscalls: add in missing white space in error message text
@ 2016-09-12 11:41 Colin King
  2016-09-12 13:43 ` Steven Rostedt
  2016-09-12 17:34 ` Joe Perches
  0 siblings, 2 replies; 4+ messages in thread
From: Colin King @ 2016-09-12 11:41 UTC (permalink / raw)
  To: Steven Rostedt, Ingo Molnar; +Cc: linux-kernel

From: Colin Ian King <colin.king@canonical.com>

pr_info message spans two lines and the literal string is missing
a white space between words. Add the white space.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 kernel/trace/trace_syscalls.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/trace/trace_syscalls.c b/kernel/trace/trace_syscalls.c
index b2b6efc..79d8752 100644
--- a/kernel/trace/trace_syscalls.c
+++ b/kernel/trace/trace_syscalls.c
@@ -610,7 +610,7 @@ static int perf_sysenter_enable(struct trace_event_call *call)
 	if (!sys_perf_refcount_enter)
 		ret = register_trace_sys_enter(perf_syscall_enter, NULL);
 	if (ret) {
-		pr_info("event trace: Could not activate"
+		pr_info("event trace: Could not activate "
 				"syscall entry trace point");
 	} else {
 		set_bit(num, enabled_perf_enter_syscalls);
@@ -682,7 +682,7 @@ static int perf_sysexit_enable(struct trace_event_call *call)
 	if (!sys_perf_refcount_exit)
 		ret = register_trace_sys_exit(perf_syscall_exit, NULL);
 	if (ret) {
-		pr_info("event trace: Could not activate"
+		pr_info("event trace: Could not activate "
 				"syscall exit trace point");
 	} else {
 		set_bit(num, enabled_perf_exit_syscalls);
-- 
2.9.3

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

end of thread, other threads:[~2016-09-13 18:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-12 11:41 [PATCH] tracing/syscalls: add in missing white space in error message text Colin King
2016-09-12 13:43 ` Steven Rostedt
2016-09-13 18:35   ` Ingo Molnar
2016-09-12 17:34 ` Joe Perches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).