diff mbox

[03/34] tools perf: Add missing struct defeinition in probe_event.h

Message ID 20161115040617.69788-4-wangnan0@huawei.com
State Accepted
Commit d6be16719e0b65f586ae4a301f02407422e6b5dd
Headers show

Commit Message

Wang Nan Nov. 15, 2016, 4:05 a.m. UTC
Commit 0b3c2264ae30 ("perf symbols: Fix kallsyms perf test on ppc64le")
referes struct symbol in probe_event.h, but forget include its definition.
Gcc will complain for it.

Signed-off-by: Wang Nan <wangnan0@huawei.com>

Cc: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/util/probe-event.h | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.10.1
diff mbox

Patch

diff --git a/tools/perf/util/probe-event.h b/tools/perf/util/probe-event.h
index 8091d15..5d4e940 100644
--- a/tools/perf/util/probe-event.h
+++ b/tools/perf/util/probe-event.h
@@ -18,6 +18,8 @@  struct probe_conf {
 extern struct probe_conf probe_conf;
 extern bool probe_event_dry_run;
 
+struct symbol;
+
 /* kprobe-tracer and uprobe-tracer tracing point */
 struct probe_trace_point {
 	char		*realname;	/* function real name (if needed) */