From: Jiri Olsa <jolsa@redhat.com>
To: Adrian Hunter <adrian.hunter@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
linux-kernel@vger.kernel.org, David Ahern <dsahern@gmail.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Namhyung Kim <namhyung@gmail.com>,
Stephane Eranian <eranian@google.com>
Subject: Re: [PATCH V7 06/25] perf record: Extend -m option for AUX area tracing mmap pages
Date: Wed, 1 Apr 2015 13:54:53 +0200 [thread overview]
Message-ID: <20150401115453.GF6992@krava.brq.redhat.com> (raw)
In-Reply-To: <1427801934-25588-7-git-send-email-adrian.hunter@intel.com>
On Tue, Mar 31, 2015 at 02:38:35PM +0300, Adrian Hunter wrote:
> Extend the -m option so that the number
> of mmap pages for AUX area tracing
> can be specified by adding a comma followed
> by the number of pages.
Acked-by: Jiri Olsa <jolsa@kernel.org>
>
> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
> ---
> tools/perf/Documentation/perf-record.txt | 2 ++
> tools/perf/builtin-record.c | 49 ++++++++++++++++++++++++++++++--
> tools/perf/util/evlist.c | 10 +++++--
> tools/perf/util/evlist.h | 1 +
> 4 files changed, 56 insertions(+), 6 deletions(-)
>
> diff --git a/tools/perf/Documentation/perf-record.txt b/tools/perf/Documentation/perf-record.txt
> index 355c4f5..e78dd80 100644
> --- a/tools/perf/Documentation/perf-record.txt
> +++ b/tools/perf/Documentation/perf-record.txt
> @@ -108,6 +108,8 @@ OPTIONS
> Number of mmap data pages (must be a power of two) or size
> specification with appended unit character - B/K/M/G. The
> size is rounded up to have nearest pages power of two value.
> + Also, by adding a comma, the number of mmap pages for AUX
> + area tracing can be specified.
>
> --group::
> Put all events in a single event group. This precedes the --event
> diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
> index 0de9432..56502e5 100644
> --- a/tools/perf/builtin-record.c
> +++ b/tools/perf/builtin-record.c
> @@ -771,6 +771,49 @@ static int perf_record_config(const char *var, const char *value, void *cb)
> return perf_default_config(var, value, cb);
> }
>
> +static int record__parse_mmap_pages(const struct option *opt,
> + const char *str,
> + int unset __maybe_unused)
> +{
> + struct record_opts *opts = opt->value;
> + char *s, *p;
> + unsigned int mmap_pages;
> + int ret;
> +
> + if (!str)
> + return -EINVAL;
> +
> + s = strdup(str);
> + if (!s)
> + return -ENOMEM;
> +
> + p = strchr(s, ',');
> + if (p)
> + *p = '\0';
> +
> + if (*s) {
> + ret = __perf_evlist__parse_mmap_pages(&mmap_pages, s);
> + if (ret)
> + goto out_free;
> + opts->mmap_pages = mmap_pages;
> + }
> +
> + if (!p) {
> + ret = 0;
> + goto out_free;
> + }
> +
> + ret = __perf_evlist__parse_mmap_pages(&mmap_pages, p + 1);
> + if (ret)
> + goto out_free;
> +
> + opts->auxtrace_mmap_pages = mmap_pages;
> +
> +out_free:
> + free(s);
> + return ret;
> +}
> +
> static const char * const __record_usage[] = {
> "perf record [<options>] [<command>]",
> "perf record [<options>] -- <command> [<options>]",
> @@ -851,9 +894,9 @@ struct option __record_options[] = {
> &record.opts.no_inherit_set,
> "child tasks do not inherit counters"),
> OPT_UINTEGER('F', "freq", &record.opts.user_freq, "profile at this frequency"),
> - OPT_CALLBACK('m', "mmap-pages", &record.opts.mmap_pages, "pages",
> - "number of mmap data pages",
> - perf_evlist__parse_mmap_pages),
> + OPT_CALLBACK('m', "mmap-pages", &record.opts, "pages[,pages]",
> + "number of mmap data pages and AUX area tracing mmap pages",
> + record__parse_mmap_pages),
> OPT_BOOLEAN(0, "group", &record.opts.group,
> "put the counters into a counter group"),
> OPT_CALLBACK_NOOPT('g', NULL, &record.opts,
> diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c
> index 3481265..9a2243f 100644
> --- a/tools/perf/util/evlist.c
> +++ b/tools/perf/util/evlist.c
> @@ -1000,10 +1000,8 @@ static long parse_pages_arg(const char *str, unsigned long min,
> return pages;
> }
>
> -int perf_evlist__parse_mmap_pages(const struct option *opt, const char *str,
> - int unset __maybe_unused)
> +int __perf_evlist__parse_mmap_pages(unsigned int *mmap_pages, const char *str)
> {
> - unsigned int *mmap_pages = opt->value;
> unsigned long max = UINT_MAX;
> long pages;
>
> @@ -1020,6 +1018,12 @@ int perf_evlist__parse_mmap_pages(const struct option *opt, const char *str,
> return 0;
> }
>
> +int perf_evlist__parse_mmap_pages(const struct option *opt, const char *str,
> + int unset __maybe_unused)
> +{
> + return __perf_evlist__parse_mmap_pages(opt->value, str);
> +}
> +
> /**
> * perf_evlist__mmap_ex - Create mmaps to receive events.
> * @evlist: list of events
> diff --git a/tools/perf/util/evlist.h b/tools/perf/util/evlist.h
> index beed571..221ac3d 100644
> --- a/tools/perf/util/evlist.h
> +++ b/tools/perf/util/evlist.h
> @@ -124,6 +124,7 @@ int perf_evlist__start_workload(struct perf_evlist *evlist);
>
> struct option;
>
> +int __perf_evlist__parse_mmap_pages(unsigned int *mmap_pages, const char *str);
> int perf_evlist__parse_mmap_pages(const struct option *opt,
> const char *str,
> int unset);
> --
> 1.9.1
>
next prev parent reply other threads:[~2015-04-01 11:55 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-31 11:38 [PATCH V7 00/25] perf tools: Introduce an abstraction for AUX Area and Instruction Tracing Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 01/25] perf header: Add AUX area tracing feature Adrian Hunter
2015-04-01 11:49 ` Jiri Olsa
2015-03-31 11:38 ` [PATCH V7 02/25] perf evlist: Add initial support for mmapping an AUX area buffer Adrian Hunter
2015-04-01 11:49 ` Jiri Olsa
2015-03-31 11:38 ` [PATCH V7 03/25] perf tools: Add user events for AUX area tracing Adrian Hunter
2015-04-01 11:50 ` Jiri Olsa
2015-03-31 11:38 ` [PATCH V7 04/25] perf tools: Add support for AUX area recording Adrian Hunter
2015-04-01 11:51 ` Jiri Olsa
2015-03-31 11:38 ` [PATCH V7 05/25] perf record: Add basic AUX area tracing support Adrian Hunter
2015-04-01 11:52 ` Jiri Olsa
2015-03-31 11:38 ` [PATCH V7 06/25] perf record: Extend -m option for AUX area tracing mmap pages Adrian Hunter
2015-04-01 11:54 ` Jiri Olsa [this message]
2015-03-31 11:38 ` [PATCH V7 07/25] perf tools: Add a user event for AUX area tracing errors Adrian Hunter
2015-04-01 11:55 ` Jiri Olsa
2015-03-31 11:38 ` [PATCH V7 08/25] perf session: Add hooks to allow transparent decoding of AUX area tracing data Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 09/25] perf session: Add instruction tracing options Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 10/25] perf auxtrace: Add helpers for AUX area tracing errors Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 11/25] perf auxtrace: Add helpers for queuing AUX area tracing data Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 12/25] perf auxtrace: Add a heap for sorting AUX area tracing queues Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 13/25] perf auxtrace: Add processing for AUX area tracing events Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 14/25] perf auxtrace: Add a hashtable for caching Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 15/25] perf tools: Add member to struct dso for an instruction cache Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 16/25] perf script: Add Instruction Tracing support Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 17/25] perf script: Always allow fields 'addr' and 'cpu' for auxtrace Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 18/25] perf report: Add Instruction Tracing support Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 19/25] perf inject: Re-pipe AUX area tracing events Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 20/25] perf inject: Add Instruction Tracing support Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 21/25] perf tools: Add AUX area tracing index Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 22/25] perf tools: Hit all build ids when AUX area tracing Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 23/25] perf tools: Add build option NO_AUXTRACE to exclude " Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 24/25] perf auxtrace: Add option to synthesize events for transactions Adrian Hunter
2015-03-31 11:38 ` [PATCH V7 25/25] perf script: Add field option 'flags' to print sample flags Adrian Hunter
2015-04-01 11:57 ` [PATCH V7 00/25] perf tools: Introduce an abstraction for AUX Area and Instruction Tracing Jiri Olsa
2015-04-01 12:02 ` Adrian Hunter
2015-04-23 14:30 ` Arnaldo Carvalho de Melo
2015-04-24 13:19 ` Adrian Hunter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150401115453.GF6992@krava.brq.redhat.com \
--to=jolsa@redhat.com \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=dsahern@gmail.com \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=namhyung@gmail.com \
--cc=peterz@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome