Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1322061 > unrolled thread

Re: [PATCH 28/54] perf record: Extract synthesize code to record__synthesize()

Started byArnaldo Carvalho de Melo <acme@redhat.com>
First post2016-01-29 21:40 +0100
Last post2016-01-29 21:40 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH 28/54] perf record: Extract synthesize code to  record__synthesize() Arnaldo Carvalho de Melo <acme@redhat.com> - 2016-01-29 21:40 +0100

#1322061 — Re: [PATCH 28/54] perf record: Extract synthesize code to record__synthesize()

FromArnaldo Carvalho de Melo <acme@redhat.com>
Date2016-01-29 21:40 +0100
SubjectRe: [PATCH 28/54] perf record: Extract synthesize code to record__synthesize()
Message-ID<qWnZM-aN-5@gated-at.bofh.it>
Em Mon, Jan 25, 2016 at 09:56:15AM +0000, Wang Nan escreveu:
> diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
>  
> +static int record__synthesize(struct record *rec)
> +{
> +	struct perf_session *session = rec->session;
> +	struct machine *machine = &session->machines.host;
> +	struct perf_data_file *file = &rec->file;
> +	struct record_opts *opts = &rec->opts;
> +	struct perf_tool *tool = &rec->tool;
> +	int fd = perf_data_file__fd(file);
> +	int err = 0;
> +	static bool warned_kmaps = false, warned_modules = false;

snip

> +	err = perf_event__synthesize_kernel_mmap(tool, process_synthesized_event,
> +						 machine);
> +	if (err < 0 && !warned_kmaps) {

Please use WARN_ONCE, there are lots of examples in tools/perf and in
the kernel proper, from where this idiom was adopted, this way these
static variables will be auto-created.

- Arnaldo

> +		warned_kmaps = true;
> +		pr_err("Couldn't record kernel reference relocation symbol\n"
> +		       "Symbol resolution may be skewed if relocation was used (e.g. kexec).\n"
> +		       "Check /proc/kallsyms permission or run as root.\n");
> +	}
> +
> +	err = perf_event__synthesize_modules(tool, process_synthesized_event,
> +					     machine);
> +	if (err < 0 && !warned_modules) {
> +		warned_modules = true;
> +		pr_err("Couldn't record kernel module information.\n"
> +		       "Symbol resolution may be skewed if relocation was used (e.g. kexec).\n"
> +		       "Check /proc/modules permission or run as root.\n");

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web