[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150324110727.GC27134@krava.brq.redhat.com>
Date: Tue, 24 Mar 2015 12:07:27 +0100
From: Jiri Olsa <jolsa@...hat.com>
To: Adrian Hunter <adrian.hunter@...el.com>
Cc: Peter Zijlstra <peterz@...radead.org>,
Arnaldo Carvalho de Melo <acme@...nel.org>,
linux-kernel@...r.kernel.org, David Ahern <dsahern@...il.com>,
Frederic Weisbecker <fweisbec@...il.com>,
Namhyung Kim <namhyung@...il.com>,
Paul Mackerras <paulus@...ba.org>,
Stephane Eranian <eranian@...gle.com>,
Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
Andi Kleen <ak@...ux.intel.com>
Subject: Re: [PATCH V6 04/25] perf tools: Add support for AUX area recording
On Mon, Mar 16, 2015 at 02:41:26PM +0200, Adrian Hunter wrote:
SNIP
> +
> +int perf_event__synthesize_auxtrace(struct perf_tool *tool,
> + perf_event__handler_t process,
> + size_t size, u64 offset, u64 ref, int idx,
> + u32 tid, u32 cpu)
> +{
> + union perf_event ev;
> +
> + memset(&ev, 0, sizeof(ev));
> + ev.auxtrace.header.type = PERF_RECORD_AUXTRACE;
> + ev.auxtrace.header.size = sizeof(ev.auxtrace);
> + ev.auxtrace.size = size;
> + ev.auxtrace.offset = offset;
> + ev.auxtrace.reference = ref;
> + ev.auxtrace.idx = idx;
> + ev.auxtrace.tid = tid;
> + ev.auxtrace.cpu = cpu;
> +
> + return process(tool, &ev, NULL, NULL);
> +}
I dont see this one being used/called from any place in your branch,
was it meant to be called from auxtrace_mmap__read?
jirka
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists