perf python: Fix undefined symbol problem
authorArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 4 Nov 2011 10:16:58 +0000 (08:16 -0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 16 Nov 2011 12:02:26 +0000 (10:02 -0200)
commit0e2a5f10fb550835e199a3b56a80ed88232188e9
tree576df20527a565f7f1a23447ebe6289b05975321
parent4a1dba72384193753e44e15d9d05a50be6587271
perf python: Fix undefined symbol problem

Recently we made perf_evsel__init call hists__init, which broke the perf
python binding:

[root@emilia linux]# ./tools/perf/python/twatch.py
Traceback (most recent call last):
  File "./tools/perf/python/twatch.py", line 16, in <module>
    import perf
ImportError: /home/acme/git/build/perf/python/perf.so: undefined symbol: hists__init

Fix it by moving the hists__init function to its only caller, evsel.c.

This way we avoid dragging in other parts of tools/perf/util/ to the
perf python binding.

Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-5nffmdt5mu6ozxgj54oi4qon@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/evsel.c
tools/perf/util/hist.c
tools/perf/util/hist.h