[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-f876d346e3807647b1de411de6a86c44821896ca@git.kernel.org>
Date: Wed, 8 Apr 2009 08:27:36 GMT
From: Tetsuo Handa <penguin-kernel@...ove.SAKURA.ne.jp>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
penguin-kernel@...ove.SAKURA.ne.jp, tglx@...utronix.de,
mingo@...e.hu, penguin-kernel@...ove.SAKURA.ne.jp
Subject: [tip:tracing/urgent] tracing: append a comma to INIT_FTRACE_GRAPH
Commit-ID: f876d346e3807647b1de411de6a86c44821896ca
Gitweb: http://git.kernel.org/tip/f876d346e3807647b1de411de6a86c44821896ca
Author: Tetsuo Handa <penguin-kernel@...ove.sakura.ne.jp>
AuthorDate: Wed, 8 Apr 2009 14:05:43 +0900
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Wed, 8 Apr 2009 10:25:25 +0200
tracing: append a comma to INIT_FTRACE_GRAPH
Impact: dont break future extensions of INIT_TASK
While not a problem right now, due to lack of a comma, build fails if
elements are appended to INIT_TASK() macro in development code:
arch/x86/kernel/init_task.c:33: error: request for member `XXXXXXXXXX' in something not a structure or union
arch/x86/kernel/init_task.c:33: error: initializer element is not constant
arch/x86/kernel/init_task.c:33: error: (near initialization for `init_task.ret_stack')
make[1]: *** [arch/x86/kernel/init_task.o] Error 1
make: *** [arch/x86/kernel] Error 2
Signed-off-by: Tetsuo Handa <penguin-kernel@...ove.SAKURA.ne.jp>
Cc: srostedt@...hat.com
LKML-Reference: <200904080505.n3855hcn017109@...262.sakura.ne.jp>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
include/linux/ftrace.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index da5405d..ff112a8 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -357,7 +357,7 @@ struct ftrace_graph_ret {
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
/* for init task */
-#define INIT_FTRACE_GRAPH .ret_stack = NULL
+#define INIT_FTRACE_GRAPH .ret_stack = NULL,
/*
* Stack of return addresses for functions
--
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