aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-10-24 12:47:10 +0200
committerIngo Molnar <mingo@elte.hu>2008-10-24 12:52:44 +0200
commitf17845e5d97ead8fbdadfd40039e058ec7cf4a42 (patch)
tree14c053143dad362fce72cc77f2beb41ab6c43dec
parent66b0de3569b00f61978782b9f97aa4803dbec0fb (diff)
ftrace: warning in kernel/trace/ftrace.c
this warning: kernel/trace/ftrace.c:189: warning: ‘frozen_record_count’ defined but not used triggers because frozen_record_count is only used in the KCONFIG_MARKERS case. Move the variable it there. Alas, this frozen-record facility seems to have little use. The frozen_record_count variable is not used by anything, nor the flags. So this section might need a bit of dead-code-removal care as well. Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--kernel/trace/ftrace.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 27212321eb0..7618c528756 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -186,7 +186,6 @@ enum {
static int ftrace_filtered;
static int tracing_on;
-static int frozen_record_count;
static LIST_HEAD(ftrace_new_addrs);
@@ -211,6 +210,9 @@ static struct dyn_ftrace *ftrace_free_records;
#ifdef CONFIG_KPROBES
+
+static int frozen_record_count;
+
static inline void freeze_record(struct dyn_ftrace *rec)
{
if (!(rec->flags & FTRACE_FL_FROZEN)) {
@@ -1443,3 +1445,4 @@ ftrace_enable_sysctl(struct ctl_table *table, int write,
mutex_unlock(&ftrace_sysctl_lock);
return ret;
}
+