[PATCH] perf tools: Fix compiler error due to header file changes

From: He Kuang
Date: Sun Jun 26 2016 - 04:41:32 EST


The commit 41840d211c51 ("perf config: Move config declarations from
util/cache.h to util/config.h") moved perf_config*(), causes the
following errors when we build with LIBBABELTRACE=1:

util/data-convert-bt.c: In function âconvert__configâ:
util/data-convert-bt.c:1269:3: error: implicit declaration of function âperf_config_u64â [-Werror=implicit-function-declaration]
c->queue_size = perf_config_u64(var, value);
^
util/data-convert-bt.c:1269:3: error: nested extern declaration of âperf_config_u64â [-Werror=nested-externs]
util/data-convert-bt.c: In function âbt_convert__perf2ctfâ:
util/data-convert-bt.c:1302:2: error: implicit declaration of function âperf_configâ [-Werror=implicit-function-declaration]
perf_config(convert__config, &c);
^

Include the right header file to fix this.

Signed-off-by: He Kuang <hekuang@xxxxxxxxxx>
---
tools/perf/util/data-convert-bt.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/tools/perf/util/data-convert-bt.c b/tools/perf/util/data-convert-bt.c
index 4b59879..7b1bc24 100644
--- a/tools/perf/util/data-convert-bt.c
+++ b/tools/perf/util/data-convert-bt.c
@@ -26,6 +26,7 @@
#include "evlist.h"
#include "evsel.h"
#include "machine.h"
+#include "config.h"

#define pr_N(n, fmt, ...) \
eprintf(n, debug_data_convert, fmt, ##__VA_ARGS__)
--
1.8.5.2