Re: [PATCH v2] Fix annotate.c use of uninitialized value error

2020-07-09 Thread Arnaldo Carvalho de Melo
Em Wed, Jul 08, 2020 at 05:54:47PM -0700, Ian Rogers escreveu: > On Fri, Oct 25, 2019 at 3:11 PM Ian Rogers wrote: > > > > It looks like this wasn't merged to tip. Does anything need addressing > > to get it merged? Finally processed, thanks for the multiple reminders, - Arnaldo > > Thanks, > >

Re: [PATCH v2] Fix annotate.c use of uninitialized value error

2020-07-08 Thread Ian Rogers
On Fri, Oct 25, 2019 at 3:11 PM Ian Rogers wrote: > > It looks like this wasn't merged to tip. Does anything need addressing > to get it merged? > > Thanks, > Ian > > On Wed, Aug 7, 2019 at 4:32 AM Jiri Olsa wrote: > > > > On Mon, Jul 29, 2019 at 01:57:50PM -0700, Numfor Mbiziwo-Tiapo wrote: > >

Re: [PATCH v2] Fix annotate.c use of uninitialized value error

2019-08-07 Thread Jiri Olsa
On Mon, Jul 29, 2019 at 01:57:50PM -0700, Numfor Mbiziwo-Tiapo wrote: > Our local MSAN (Memory Sanitizer) build of perf throws a warning > that comes from the "dso__disassemble_filename" function in > "tools/perf/util/annotate.c" when running perf record. > > The warning stems from the call to rea

[PATCH v2] Fix annotate.c use of uninitialized value error

2019-07-30 Thread Numfor Mbiziwo-Tiapo
Our local MSAN (Memory Sanitizer) build of perf throws a warning that comes from the "dso__disassemble_filename" function in "tools/perf/util/annotate.c" when running perf record. The warning stems from the call to readlink, in which "build_id_path" was being read into "linkname". Since readlink d

[PATCH v2] Fix annotate.c use of uninitialized value error

2019-07-29 Thread Numfor Mbiziwo-Tiapo
Our local MSAN (Memory Sanitizer) build of perf throws a warning that comes from the "dso__disassemble_filename" function in "tools/perf/util/annotate.c" when running perf record. The warning stems from the call to readlink, in which "build_id_path" was being read into "linkname". Since readlink d