[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20161123230609.GH15978@krava>
Date: Thu, 24 Nov 2016 00:06:09 +0100
From: Jiri Olsa <jolsa@...hat.com>
To: kan.liang@...el.com
Cc: peterz@...radead.org, mingo@...hat.com, acme@...nel.org,
linux-kernel@...r.kernel.org, alexander.shishkin@...ux.intel.com,
tglx@...utronix.de, namhyung@...nel.org, jolsa@...nel.org,
adrian.hunter@...el.com, wangnan0@...wei.com, mark.rutland@....com,
andi@...stfloor.org
Subject: Re: [PATCH 11/14] perf tools: record write data overhead
On Wed, Nov 23, 2016 at 04:44:49AM -0500, kan.liang@...el.com wrote:
SNIP
>
> +static void perf_event__synth_overhead(struct record *rec, perf_event__handler_t process)
> +{
> + int cpu;
> +
> + union perf_event event = {
> + .overhead = {
> + .header = {
> + .type = PERF_RECORD_USER_OVERHEAD,
> + .size = sizeof(struct perf_overhead),
> + },
> + },
> + };
> +
> + event.overhead.type = PERF_USER_WRITE_OVERHEAD;
> +
> + for (cpu = 0; cpu < MAX_NR_CPUS; cpu++) {
> + if (!rec->overhead[cpu].nr)
> + continue;
> +
> + event.overhead.entry.cpu = cpu;
> + event.overhead.entry.nr = rec->overhead[cpu].nr;
> + event.overhead.entry.time = rec->overhead[cpu].time;
> +
> + (void)process(&rec->tool, &event, NULL, NULL);
plese make perf_event__synth_overhead return int and check above 'process' return value
jirka
Powered by blists - more mailing lists