lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 13 Aug 2013 20:18:02 +0200
From:	Jiri Olsa <jolsa@...hat.com>
To:	Adrian Hunter <adrian.hunter@...el.com>
Cc:	Arnaldo Carvalho de Melo <acme@...stprotocols.net>,
	linux-kernel@...r.kernel.org, David Ahern <dsahern@...il.com>,
	Frederic Weisbecker <fweisbec@...il.com>,
	Mike Galbraith <efault@....de>,
	Namhyung Kim <namhyung@...il.com>,
	Paul Mackerras <paulus@...ba.org>,
	Peter Zijlstra <peterz@...radead.org>,
	Stephane Eranian <eranian@...gle.com>,
	Ingo Molnar <mingo@...nel.org>
Subject: Re: [PATCH V10 11/13] perf tools: expand
 perf_event__synthesize_sample()

On Fri, Aug 09, 2013 at 01:51:57PM +0300, Adrian Hunter wrote:

SNIP

> +
> +	if (type & PERF_SAMPLE_BRANCH_STACK) {
> +		sz = sample->branch_stack->nr * sizeof(struct branch_entry);
> +		sz += sizeof(u64);
> +		memcpy(array, sample->branch_stack, sz);
> +		array = (void *)array + sz;
> +	}
> +
> +	if (type & PERF_SAMPLE_REGS_USER) {
> +		if (sample->user_regs.regs && sample_regs_user) {
> +			*array++ = sample_regs_user;

this one is still missing 'enum perf_sample_regs_abi' value

as used in perf_inject__sched_stat, we could parse it out in
perf_evsel__parse_sample into perf_sample::regs_dump::abi
and use the value in here

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

Powered by Openwall GNU/*/Linux Powered by OpenVZ