diff options
-rw-r--r-- | kernel/trace/ftrace.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 27212321eb0d..7618c528756b 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
@@ -186,7 +186,6 @@ enum { | |||
186 | 186 | ||
187 | static int ftrace_filtered; | 187 | static int ftrace_filtered; |
188 | static int tracing_on; | 188 | static int tracing_on; |
189 | static int frozen_record_count; | ||
190 | 189 | ||
191 | static LIST_HEAD(ftrace_new_addrs); | 190 | static LIST_HEAD(ftrace_new_addrs); |
192 | 191 | ||
@@ -211,6 +210,9 @@ static struct dyn_ftrace *ftrace_free_records; | |||
211 | 210 | ||
212 | 211 | ||
213 | #ifdef CONFIG_KPROBES | 212 | #ifdef CONFIG_KPROBES |
213 | |||
214 | static int frozen_record_count; | ||
215 | |||
214 | static inline void freeze_record(struct dyn_ftrace *rec) | 216 | static inline void freeze_record(struct dyn_ftrace *rec) |
215 | { | 217 | { |
216 | if (!(rec->flags & FTRACE_FL_FROZEN)) { | 218 | if (!(rec->flags & FTRACE_FL_FROZEN)) { |
@@ -1443,3 +1445,4 @@ ftrace_enable_sysctl(struct ctl_table *table, int write, | |||
1443 | mutex_unlock(&ftrace_sysctl_lock); | 1445 | mutex_unlock(&ftrace_sysctl_lock); |
1444 | return ret; | 1446 | return ret; |
1445 | } | 1447 | } |
1448 | |||