These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / tools / perf / util / config.c
index e18f653..2e452ac 100644 (file)
@@ -12,6 +12,7 @@
 #include "cache.h"
 #include "exec_cmd.h"
 #include "util/hist.h"  /* perf_hist_config */
+#include "util/llvm-utils.h"   /* perf_llvm_config */
 
 #define MAXNAME (256)
 
@@ -408,6 +409,9 @@ int perf_default_config(const char *var, const char *value,
        if (!prefixcmp(var, "call-graph."))
                return perf_callchain_config(var, value);
 
+       if (!prefixcmp(var, "llvm."))
+               return perf_llvm_config(var, value);
+
        /* Add other config variables here. */
        return 0;
 }