Re: [PATCH 38/48] perf record: Read record thread's mmaps

2018-09-23 Thread Jiri Olsa
On Mon, Sep 17, 2018 at 08:28:37PM +0900, Namhyung Kim wrote: SNIP > > - > > - if (track_map && track_map->base) { > > - if (perf_mmap__push(track_map, rec, record__pushfn) != > > 0) { > > - rc = -1; > > - goto out;

Re: [PATCH 38/48] perf record: Read record thread's mmaps

2018-09-17 Thread Namhyung Kim
On Thu, Sep 13, 2018 at 02:54:40PM +0200, Jiri Olsa wrote: > Switch the maps source from evlist into thread data. > > Link: http://lkml.kernel.org/n/tip-2r6hn6shl185j66b4vl1k...@git.kernel.org > Signed-off-by: Jiri Olsa > --- > tools/perf/builtin-record.c | 37 ---

[PATCH 38/48] perf record: Read record thread's mmaps

2018-09-13 Thread Jiri Olsa
Switch the maps source from evlist into thread data. Link: http://lkml.kernel.org/n/tip-2r6hn6shl185j66b4vl1k...@git.kernel.org Signed-off-by: Jiri Olsa --- tools/perf/builtin-record.c | 37 - 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/too