Re: [PATCH v2 5/9] perf tools: avoid a malloc for array events

2019-10-23 Thread Arnaldo Carvalho de Melo
Em Wed, Oct 23, 2019 at 10:58:30AM +0200, Jiri Olsa escreveu: > On Tue, Oct 22, 2019 at 05:53:33PM -0700, Ian Rogers wrote: > > Use realloc rather than malloc+memcpy to possibly avoid a memory > > allocation when appending array elements. > > > > Signed-off-by: Ian Rogers > > Acked-by: Jiri Olsa

Re: [PATCH v2 5/9] perf tools: avoid a malloc for array events

2019-10-23 Thread Jiri Olsa
On Tue, Oct 22, 2019 at 05:53:33PM -0700, Ian Rogers wrote: > Use realloc rather than malloc+memcpy to possibly avoid a memory > allocation when appending array elements. > > Signed-off-by: Ian Rogers Acked-by: Jiri Olsa thanks, jirka > --- > tools/perf/util/parse-events.y | 8 +++- > 1