Re: [PATCH 7/9] perf tools: add support for reading from /proc/kcore

2013-07-30 Thread Adrian Hunter
On 30/07/2013 7:37 a.m., Namhyung Kim wrote: Hi, On Thu, 25 Jul 2013 17:01:28 +0300, Adrian Hunter wrote: In the absence of vmlinux, perf tools uses kallsyms for symbols. If the user has access, now also map to /proc/kcore. The dso data_type is now set to either DSO_BINARY_TYPE__KCORE or

Re: [PATCH 7/9] perf tools: add support for reading from /proc/kcore

2013-07-30 Thread Adrian Hunter
On 30/07/2013 7:37 a.m., Namhyung Kim wrote: Hi, On Thu, 25 Jul 2013 17:01:28 +0300, Adrian Hunter wrote: In the absence of vmlinux, perf tools uses kallsyms for symbols. If the user has access, now also map to /proc/kcore. The dso data_type is now set to either DSO_BINARY_TYPE__KCORE or

Re: [PATCH 7/9] perf tools: add support for reading from /proc/kcore

2013-07-29 Thread Namhyung Kim
Hi, On Thu, 25 Jul 2013 17:01:28 +0300, Adrian Hunter wrote: > In the absence of vmlinux, perf tools uses kallsyms > for symbols. If the user has access, now also map to > /proc/kcore. > > The dso data_type is now set to either > DSO_BINARY_TYPE__KCORE or DSO_BINARY_TYPE__GUEST_KCORE > as

Re: [PATCH 7/9] perf tools: add support for reading from /proc/kcore

2013-07-29 Thread Namhyung Kim
Hi, On Thu, 25 Jul 2013 17:01:28 +0300, Adrian Hunter wrote: In the absence of vmlinux, perf tools uses kallsyms for symbols. If the user has access, now also map to /proc/kcore. The dso data_type is now set to either DSO_BINARY_TYPE__KCORE or DSO_BINARY_TYPE__GUEST_KCORE as approprite.

[PATCH 7/9] perf tools: add support for reading from /proc/kcore

2013-07-25 Thread Adrian Hunter
In the absence of vmlinux, perf tools uses kallsyms for symbols. If the user has access, now also map to /proc/kcore. The dso data_type is now set to either DSO_BINARY_TYPE__KCORE or DSO_BINARY_TYPE__GUEST_KCORE as approprite. Signed-off-by: Adrian Hunter --- tools/perf/util/dso.c

[PATCH 7/9] perf tools: add support for reading from /proc/kcore

2013-07-25 Thread Adrian Hunter
In the absence of vmlinux, perf tools uses kallsyms for symbols. If the user has access, now also map to /proc/kcore. The dso data_type is now set to either DSO_BINARY_TYPE__KCORE or DSO_BINARY_TYPE__GUEST_KCORE as approprite. Signed-off-by: Adrian Hunter adrian.hun...@intel.com ---