aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/samples/ftrace/ftrace-direct.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2019-11-15 08:59:38 +0000
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2019-11-15 11:30:38 -0500
commit760f8bc7c89c87bff9c01a8746e85dcc6e771ea8 (patch)
treeca392446b36d716e66fb8b04c95785ee6cc7d8ca /samples/ftrace/ftrace-direct.c
parenttracing: Increase SYNTH_FIELDS_MAX for synthetic_events (diff)
downloadwireguard-linux-760f8bc7c89c87bff9c01a8746e85dcc6e771ea8.tar.xz
wireguard-linux-760f8bc7c89c87bff9c01a8746e85dcc6e771ea8.zip
ftrace/selftests: Fix spelling mistake "wakeing" -> "waking"
There is a spelling mistake in a trace_printk message. As well as in the selftests that search for this string. Link: http://lkml.kernel.org/r/20191115085938.38947-1-colin.king@canonical.com Link: http://lkml.kernel.org/r/20191115090356.39572-1-colin.king@canonical.com Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to '')
-rw-r--r--samples/ftrace/ftrace-direct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/ftrace/ftrace-direct.c b/samples/ftrace/ftrace-direct.c
index 1483f067b000..a2e3063bd306 100644
--- a/samples/ftrace/ftrace-direct.c
+++ b/samples/ftrace/ftrace-direct.c
@@ -6,7 +6,7 @@
void my_direct_func(struct task_struct *p)
{
- trace_printk("wakeing up %s-%d\n", p->comm, p->pid);
+ trace_printk("waking up %s-%d\n", p->comm, p->pid);
}
extern void my_tramp(void *);