]> git.baikalelectronics.ru Git - kernel.git/commit
perf tools: Reference count struct dso
authorArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 2 Jun 2015 14:53:26 +0000 (11:53 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 8 Jun 2015 13:31:40 +0000 (10:31 -0300)
commit5320c08428a33e3893aeaad23fc937e825d0abac
tree5b89c379e629ed3c23f22102be66a99025c496da
parentf0b128099b4cd233631bd1623fd9faf6dc61eed1
perf tools: Reference count struct dso

This has a different model than the 'thread' and 'map' struct lifetimes:
there is not a definitive "don't use this DSO anymore" event, i.e. we may
get many 'struct map' holding references to the '/usr/lib64/libc-2.20.so'
DSO but then at some point some DSO may have no references but we still
don't want to straight away release its resources, because "soon" we may
get a new 'struct map' that needs it and we want to reuse its symtab or
other resources.

So we need some way to garbage collect it when crossing some memory
usage threshold, which is left for anoter patch, for now it is
sufficient to release it when calling dsos__exit(), i.e. when deleting
the whole list as part of deleting the 'struct machine' containing it,
which will leave only referenced objects being used.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/n/tip-majzgz07cm90t2tejrjy4clf@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/tests/dso-data.c
tools/perf/tests/hists_common.c
tools/perf/util/dso.c
tools/perf/util/dso.h
tools/perf/util/header.c
tools/perf/util/machine.c
tools/perf/util/map.c
tools/perf/util/probe-finder.c
tools/perf/util/symbol-elf.c
tools/perf/util/symbol.c
tools/perf/util/vdso.c