]> Pileus Git - ~andy/linux/commitdiff
tracing: Move ftrace_event_file() out of DYNAMIC_FTRACE ifdef
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Sat, 21 Dec 2013 04:23:05 +0000 (23:23 -0500)
committerSteven Rostedt <rostedt@goodmis.org>
Sun, 22 Dec 2013 03:02:17 +0000 (22:02 -0500)
Now that event triggers use ftrace_event_file(), it needs to be outside
the #ifdef CONFIG_DYNAMIC_FTRACE, as it can now be used when that is
not defined.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/trace_events.c

index 9a974bd843d4943c37aee8054adb81d3d91f3ae1..e71ffd4eccb5b4d7a7b0234dd72e525b1c647550 100644 (file)
@@ -1855,19 +1855,6 @@ __trace_add_event_dirs(struct trace_array *tr)
        }
 }
 
-#ifdef CONFIG_DYNAMIC_FTRACE
-
-/* Avoid typos */
-#define ENABLE_EVENT_STR       "enable_event"
-#define DISABLE_EVENT_STR      "disable_event"
-
-struct event_probe_data {
-       struct ftrace_event_file        *file;
-       unsigned long                   count;
-       int                             ref;
-       bool                            enable;
-};
-
 struct ftrace_event_file *
 find_event_file(struct trace_array *tr, const char *system,  const char *event)
 {
@@ -1891,6 +1878,19 @@ find_event_file(struct trace_array *tr, const char *system,  const char *event)
        return NULL;
 }
 
+#ifdef CONFIG_DYNAMIC_FTRACE
+
+/* Avoid typos */
+#define ENABLE_EVENT_STR       "enable_event"
+#define DISABLE_EVENT_STR      "disable_event"
+
+struct event_probe_data {
+       struct ftrace_event_file        *file;
+       unsigned long                   count;
+       int                             ref;
+       bool                            enable;
+};
+
 static void
 event_enable_probe(unsigned long ip, unsigned long parent_ip, void **_data)
 {