Re: [PATCH] tracing: fix typo and missing inline function

From: Steven Rostedt
Date: Thu Dec 04 2008 - 08:16:28 EST



On Thu, 4 Dec 2008, Ingo Molnar wrote:

>
> * Ingo Molnar <mingo@xxxxxxx> wrote:
>
> > small fixlet below.
>
> updated.
>
> --------------->
> >From 6b2539302bee8e88c99e3c7d80c16a04dbe5e2ad Mon Sep 17 00:00:00 2001
> From: Ingo Molnar <mingo@xxxxxxx>
> Date: Thu, 4 Dec 2008 09:18:28 +0100
> Subject: [PATCH] tracing: fix typo and missing inline function
>
> Impact: fix build bugs
>
> Signed-off-by: Ingo Molnar <mingo@xxxxxxx>
> ---
> kernel/trace/trace.h | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h
> index 8b81b4d..b4b7b73 100644
> --- a/kernel/trace/trace.h
> +++ b/kernel/trace/trace.h
> @@ -529,7 +529,11 @@ static inline int ftrace_graph_addr(unsigned long addr)
> #else
> static inline int ftrace_trace_addr(unsigned long addr)
> {
> - return 1
> + return 1;
> +}
> +static inline int ftrace_graph_addr(unsigned long addr)
> +{
> + return 1;
> }
> #endif /* CONFIG_DYNAMIC_FTRACE */

Thanks! I guess I need to test the "off" cases ;-)

-- Steve

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/