aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Ziegler <[email protected]>2019-01-17 14:30:23 +0100
committerSteven Rostedt (VMware) <[email protected]>2019-01-17 09:51:42 -0500
commitea6eb5e7d15e1838de335609994b4546e2abcaaf (patch)
tree99029cd7b80ecb5dcd35d8d03405511a452a6473
parent8b05a3a7503c2a982c9c462eae96cfbd59506783 (diff)
tracing: uprobes: Fix typo in pr_fmt string
The subsystem-specific message prefix for uprobes was also "trace_kprobe: " instead of "trace_uprobe: " as described in the original commit message. Link: http://lkml.kernel.org/r/[email protected] Cc: Ingo Molnar <[email protected]> Cc: [email protected] Acked-by: Masami Hiramatsu <[email protected]> Fixes: 7257634135c24 ("tracing/probe: Show subsystem name in messages") Signed-off-by: Andreas Ziegler <[email protected]> Signed-off-by: Steven Rostedt (VMware) <[email protected]>
-rw-r--r--kernel/trace/trace_uprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace_uprobe.c b/kernel/trace/trace_uprobe.c
index e335576b9411..19a1a8e19062 100644
--- a/kernel/trace/trace_uprobe.c
+++ b/kernel/trace/trace_uprobe.c
@@ -5,7 +5,7 @@
* Copyright (C) IBM Corporation, 2010-2012
* Author: Srikar Dronamraju <[email protected]>
*/
-#define pr_fmt(fmt) "trace_kprobe: " fmt
+#define pr_fmt(fmt) "trace_uprobe: " fmt
#include <linux/ctype.h>
#include <linux/module.h>