#define trace_boot_init_events(tr, node) do {} while (0)
 #endif
 
+#ifdef CONFIG_DYNAMIC_FTRACE
+extern bool ftrace_filter_param __initdata;
+extern int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
+                            int len, int reset);
+extern int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
+                             int len, int reset);
+static void __init
+trace_boot_set_ftrace_filter(struct trace_array *tr, struct xbc_node *node)
+{
+       struct xbc_node *anode;
+       const char *p;
+       char *q;
+
+       xbc_node_for_each_array_value(node, "ftrace.filters", anode, p) {
+               q = kstrdup(p, GFP_KERNEL);
+               if (!q)
+                       return;
+               if (ftrace_set_filter(tr->ops, q, strlen(q), 0) < 0)
+                       pr_err("Failed to add %s to ftrace filter\n", p);
+               else
+                       ftrace_filter_param = true;
+               kfree(q);
+       }
+       xbc_node_for_each_array_value(node, "ftrace.notraces", anode, p) {
+               q = kstrdup(p, GFP_KERNEL);
+               if (!q)
+                       return;
+               if (ftrace_set_notrace(tr->ops, q, strlen(q), 0) < 0)
+                       pr_err("Failed to add %s to ftrace filter\n", p);
+               else
+                       ftrace_filter_param = true;
+               kfree(q);
+       }
+}
+#else
+#define trace_boot_set_ftrace_filter(tr, node) do {} while (0)
+#endif
+
 static void __init
 trace_boot_enable_tracer(struct trace_array *tr, struct xbc_node *node)
 {
        const char *p;
 
+       trace_boot_set_ftrace_filter(tr, node);
+
        p = xbc_node_find_value(node, "tracer", NULL);
        if (p && *p != '\0') {
                if (tracing_set_tracer(tr, p) < 0)