From: Li Zefan Date: Mon, 2 Nov 2009 00:51:13 +0000 (+0800) Subject: tracing: Fix to use __always_unused attribute X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5e9b397292ca0b9409dced33e3a22ec993377064;p=linux.git tracing: Fix to use __always_unused attribute ____ftrace_check_##name() is used for compile-time check on F_printk() only, so it should be marked as __unused instead of __used. Signed-off-by: Li Zefan Cc: Steven Rostedt Cc: Frederic Weisbecker Cc: Linus Torvalds LKML-Reference: <4AEE2D01.4010305@cn.fujitsu.com> Signed-off-by: Ingo Molnar --- diff --git a/kernel/trace/trace_export.c b/kernel/trace/trace_export.c index 9753fcc61bc55..c74848ddb85a2 100644 --- a/kernel/trace/trace_export.c +++ b/kernel/trace/trace_export.c @@ -48,11 +48,11 @@ struct ____ftrace_##name { \ tstruct \ }; \ -static void __used ____ftrace_check_##name(void) \ +static void __always_unused ____ftrace_check_##name(void) \ { \ struct ____ftrace_##name *__entry = NULL; \ \ - /* force cmpile-time check on F_printk() */ \ + /* force compile-time check on F_printk() */ \ printk(print); \ }