[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1291427265.16223.8.camel@gandalf.stny.rr.com>
Date: Fri, 03 Dec 2010 20:47:45 -0500
From: Steven Rostedt <rostedt@...dmis.org>
To: David Sharp <dhsharp@...gle.com>
Cc: linux-kernel@...r.kernel.org, mrubin@...gle.com,
Li Zefan <lizf@...fujitsu.com>
Subject: Re: [PATCH 06/15] ftrace: fix event alignment:
module:module_request
[ Ccing Li for an Acked-by. He wrote this event ]
-- Steve
On Fri, 2010-12-03 at 16:13 -0800, David Sharp wrote:
> Signed-off-by: David Sharp <dhsharp@...gle.com>
> ---
> include/trace/events/module.h | 5 ++---
> 1 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/include/trace/events/module.h b/include/trace/events/module.h
> index c7bb2f0..8154f5f 100644
> --- a/include/trace/events/module.h
> +++ b/include/trace/events/module.h
> @@ -98,14 +98,14 @@ TRACE_EVENT(module_request,
> TP_ARGS(name, wait, ip),
>
> TP_STRUCT__entry(
> - __field( bool, wait )
> __field( unsigned long, ip )
> + __field( bool, wait )
> __string( name, name )
> ),
>
> TP_fast_assign(
> - __entry->wait = wait;
> __entry->ip = ip;
> + __entry->wait = wait;
> __assign_str(name, name);
> ),
>
> @@ -119,4 +119,3 @@ TRACE_EVENT(module_request,
>
> /* This part must be outside protection */
> #include <trace/define_trace.h>
> -
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists