Skip to content

Commit d282b9c

Browse files
Colin Ian KingJiri Kosina
Colin Ian King
authored and
Jiri Kosina
committed
tracing/syscalls: fix multiline in error message text
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 <[email protected]> Acked-by: Ingo Molnar <[email protected]> Acked-by: Steven Rostedt <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent 67797b9 commit d282b9c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

kernel/trace/trace_syscalls.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,7 @@ static int perf_sysenter_enable(struct trace_event_call *call)
610610
if (!sys_perf_refcount_enter)
611611
ret = register_trace_sys_enter(perf_syscall_enter, NULL);
612612
if (ret) {
613-
pr_info("event trace: Could not activate"
614-
"syscall entry trace point");
613+
pr_info("event trace: Could not activate syscall entry trace point");
615614
} else {
616615
set_bit(num, enabled_perf_enter_syscalls);
617616
sys_perf_refcount_enter++;
@@ -682,8 +681,7 @@ static int perf_sysexit_enable(struct trace_event_call *call)
682681
if (!sys_perf_refcount_exit)
683682
ret = register_trace_sys_exit(perf_syscall_exit, NULL);
684683
if (ret) {
685-
pr_info("event trace: Could not activate"
686-
"syscall exit trace point");
684+
pr_info("event trace: Could not activate syscall exit trace point");
687685
} else {
688686
set_bit(num, enabled_perf_exit_syscalls);
689687
sys_perf_refcount_exit++;

0 commit comments

Comments
 (0)