Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1481167
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] tracing/syscalls: add in missing white space in error message text |
| Date | 2016-09-12 13:50 +0200 |
| Message-ID | <sgxUm-2FS-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
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
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] tracing/syscalls: add in missing white space in error message text Colin King <colin.king@canonical.com> - 2016-09-12 13:50 +0200
Re: [PATCH] tracing/syscalls: add in missing white space in error message text Steven Rostedt <rostedt@goodmis.org> - 2016-09-12 15:50 +0200
Re: [PATCH] tracing/syscalls: add in missing white space in error message text Ingo Molnar <mingo@kernel.org> - 2016-09-13 20:40 +0200
Re: [PATCH] tracing/syscalls: add in missing white space in error message text Joe Perches <joe@perches.com> - 2016-09-12 19:40 +0200
csiph-web