[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150603103129.GG1828@krava.redhat.com>
Date: Wed, 3 Jun 2015 12:31:30 +0200
From: Jiri Olsa <jolsa@...hat.com>
To: Sukadev Bhattiprolu <sukadev@...ux.vnet.ibm.com>
Cc: mingo@...hat.com, ak@...ux.intel.com,
Michael Ellerman <mpe@...erman.id.au>,
Arnaldo Carvalho de Melo <acme@...nel.org>,
namhyung@...nel.org, linuxppc-dev@...ts.ozlabs.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v13 03/14] perf, tools: Use pmu_events_map table to
create event aliases
On Tue, Jun 02, 2015 at 10:12:03AM -0700, Sukadev Bhattiprolu wrote:
SNIP
> @@ -225,26 +221,47 @@ static int perf_pmu__new_alias(struct list_head *list, char *dir, char *name, FI
> alias->unit[0] = '\0';
> alias->per_pkg = false;
>
> - ret = parse_events_terms(&alias->terms, buf);
> + ret = parse_events_terms(&alias->terms, val);
> if (ret) {
> + pr_err("Cannot parse alias %s: %d\n", val, ret);
> free(alias);
> return ret;
> }
>
> alias->name = strdup(name);
> + if (dir) {
> + /*
> + * load unit name and scale if available
> + */
> + perf_pmu__parse_unit(alias, dir, name);
> + perf_pmu__parse_scale(alias, dir, name);
> + perf_pmu__parse_per_pkg(alias, dir, name);
> + perf_pmu__parse_snapshot(alias, dir, name);
> + }
> +
> /*
> - * load unit name and scale if available
> + * TODO: pickup description from Andi's patchset
> */
> - perf_pmu__parse_unit(alias, dir, name);
> - perf_pmu__parse_scale(alias, dir, name);
> - perf_pmu__parse_per_pkg(alias, dir, name);
> - perf_pmu__parse_snapshot(alias, dir, name);
> + //alias->desc = desc ? strdpu(desc) : NULL;
please remove the TODO line and above commented code,
it is addressed later in this patchset
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