[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <46388f53a3790781f0c39bf3444140152caadab1.camel@perches.com>
Date: Thu, 17 Jan 2019 12:42:49 -0800
From: Joe Perches <joe@...ches.com>
To: Andreas Ziegler <andreas.ziegler@....de>,
Steven Rostedt <rostedt@...dmis.org>
Cc: Ingo Molnar <mingo@...hat.com>,
Masami Hiramatsu <mhiramat@...nel.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] tracing: uprobes: fix typo in pr_fmt string
On Thu, 2019-01-17 at 14:30 +0100, Andreas Ziegler wrote:
> The subsystem-specific message prefix for uprobes was also
> "trace_kprobe: " instead of "trace_uprobe: " as described in
> the original commit message.
[]
> diff --git 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 <srikar@...ux.vnet.ibm.com>
> */
> -#define pr_fmt(fmt) "trace_kprobe: " fmt
> +#define pr_fmt(fmt) "trace_uprobe: " fmt
Perhaps use the more common KBUILD_MODNAME instead
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Powered by blists - more mailing lists