Re: [PATCH 3/3] tools/perf/jvmti: generate correct debug information for inlined code

From: Arnaldo Carvalho de Melo
Date: Thu Nov 23 2017 - 10:22:35 EST


Em Wed, Nov 22, 2017 at 06:25:41PM -0600, Kim Phillips escreveu:
> From: Ben Gainey <ben.gainey@xxxxxxx>
> @@ -405,7 +405,9 @@ jvmti_write_debug_info(void *agent, uint64_t code, const char *file,
> return -1;
> }
>
> - flen = strlen(file) + 1;
> + for (i = 0; i < nr_lines; ++i) {
> + flen += strlen(file_names[i]) + 1;
> + }


Please follow the coding standard used in this file and in tools/perf,
which is the kernel one.

Thanks for providing instructions on how to reproduce the problem!

Stephane, can you please Ack this?

- Arnaldo