diff mbox series

[RFC,v3,09/12] perf metricgroup: Split up metricgroup__add_metric()

Message ID 1588852671-61996-10-git-send-email-john.garry@huawei.com (mailing list archive)
State New, archived
Headers show
Series perf pmu-events: Support event aliasing for system PMUs | expand

Commit Message

John Garry May 7, 2020, 11:57 a.m. UTC
To aid supporting system event metric groups, break up the function
metricgroup__add_metric() into a part which iterates metrics and a part
which actually "adds" the metric.

No functional change intended.

Signed-off-by: John Garry <john.garry@huawei.com>
---
 tools/perf/util/metricgroup.c | 75 ++++++++++++++++++++++++++-----------------
 1 file changed, 45 insertions(+), 30 deletions(-)

Comments

Jiri Olsa May 11, 2020, 11:01 a.m. UTC | #1
On Thu, May 07, 2020 at 07:57:48PM +0800, John Garry wrote:
> To aid supporting system event metric groups, break up the function
> metricgroup__add_metric() into a part which iterates metrics and a part
> which actually "adds" the metric.
> 
> No functional change intended.

this no longer applied on Arnaldo's perf/core,
it's very busy part now :-\

jirka

> 
> Signed-off-by: John Garry <john.garry@huawei.com>
> ---
>  tools/perf/util/metricgroup.c | 75 ++++++++++++++++++++++++++-----------------
>  1 file changed, 45 insertions(+), 30 deletions(-)
> 
> diff --git a/tools/perf/util/metricgroup.c b/tools/perf/util/metricgroup.c
> index 926449a7cdbf..d1033756a1bc 100644
> --- a/tools/perf/util/metricgroup.c
> +++ b/tools/perf/util/metricgroup.c
> @@ -231,6 +231,12 @@ static bool match_metric(const char *n, const char *list)
>  	return false;
>  }
>  
> +static bool match_pe_metric(struct pmu_event *pe, const char *metric)
> +{
> +	return match_metric(pe->metric_group, metric) ||
> +	       match_metric(pe->metric_name, metric);
> +}
> +
>  struct mep {
>  	struct rb_node nd;
>  	const char *name;
> @@ -485,6 +491,40 @@ static bool metricgroup__has_constraint(struct pmu_event *pe)
>  	return false;
>  }
>  
> +static int metricgroup__add_metric_pmu_event(struct pmu_event *pe,
> +					     struct strbuf *events,
> +					     struct list_head *group_list)
> +{
> +	const char **ids;
> +	int idnum;
> +	struct egroup *eg;
> +
> +	pr_debug("metric expr %s for %s\n", pe->metric_expr, pe->metric_name);
> +
> +	if (expr__find_other(pe->metric_expr, NULL, &ids, &idnum) < 0)
> +		return 0;
> +
> +	if (events->len > 0)
> +		strbuf_addf(events, ",");
> +
> +	if (metricgroup__has_constraint(pe))
> +		metricgroup__add_metric_non_group(events, ids, idnum);
> +	else
> +		metricgroup__add_metric_weak_group(events, ids, idnum);
> +
> +	eg = malloc(sizeof(*eg));
> +	if (!eg)
> +		return -ENOMEM;
> +	eg->ids = ids;
> +	eg->idnum = idnum;
> +	eg->metric_name = pe->metric_name;
> +	eg->metric_expr = pe->metric_expr;
> +	eg->metric_unit = pe->unit;
> +	list_add_tail(&eg->nd, group_list);
> +
> +	return 0;
> +}
> +
>  static int metricgroup__add_metric(const char *metric, struct strbuf *events,
>  				   struct list_head *group_list)
>  {
> @@ -502,37 +542,12 @@ static int metricgroup__add_metric(const char *metric, struct strbuf *events,
>  			break;
>  		if (!pe->metric_expr)
>  			continue;
> -		if (match_metric(pe->metric_group, metric) ||
> -		    match_metric(pe->metric_name, metric)) {
> -			const char **ids;
> -			int idnum;
> -			struct egroup *eg;
> -
> -			pr_debug("metric expr %s for %s\n", pe->metric_expr, pe->metric_name);
>  
> -			if (expr__find_other(pe->metric_expr,
> -					     NULL, &ids, &idnum) < 0)
> -				continue;
> -			if (events->len > 0)
> -				strbuf_addf(events, ",");
> -
> -			if (metricgroup__has_constraint(pe))
> -				metricgroup__add_metric_non_group(events, ids, idnum);
> -			else
> -				metricgroup__add_metric_weak_group(events, ids, idnum);
> -
> -			eg = malloc(sizeof(struct egroup));
> -			if (!eg) {
> -				ret = -ENOMEM;
> -				break;
> -			}
> -			eg->ids = ids;
> -			eg->idnum = idnum;
> -			eg->metric_name = pe->metric_name;
> -			eg->metric_expr = pe->metric_expr;
> -			eg->metric_unit = pe->unit;
> -			list_add_tail(&eg->nd, group_list);
> -			ret = 0;
> +		if (match_pe_metric(pe, metric)) {
> +			ret = metricgroup__add_metric_pmu_event(pe, events,
> +								group_list);
> +			if (ret)
> +				return ret;
>  		}
>  	}
>  	return ret;
> -- 
> 2.16.4
>
John Garry May 11, 2020, 11:25 a.m. UTC | #2
On 11/05/2020 12:01, Jiri Olsa wrote:
> On Thu, May 07, 2020 at 07:57:48PM +0800, John Garry wrote:
>> To aid supporting system event metric groups, break up the function
>> metricgroup__add_metric() into a part which iterates metrics and a part
>> which actually "adds" the metric.
>>
>> No functional change intended.
> 
> this no longer applied on Arnaldo's perf/core,


Hi jirka,

> it's very busy part now :-\

Right.

So I could rebase and resend, but I rather avoid that if possible since 
the metric code is so busy.

The point is that I would like to see progress on the kernel part first 
(to expose per-PMU sysfs identifier file). Once we agreement there, then 
I can promote this series to non-RFC and ensure I'm based on acme tip.

Hi Joakim, can you progress 
https://lore.kernel.org/linux-arm-kernel/20200226073433.5834-1-qiangqing.zhang@nxp.com/ 
to non-RFC now?

Thanks,
John


> 
> jirka
> 
>>
>> Signed-off-by: John Garry <john.garry@huawei.com>
>> ---
>>   tools/perf/util/metricgroup.c | 75 ++++++++++++++++++++++++++-----------------
>>   1 file changed, 45 insertions(+), 30 deletions(-)
>>
>> diff --git a/tools/perf/util/metricgroup.c b/tools/perf/util/metricgroup.c
>> index 926449a7cdbf..d1033756a1bc 100644
>> --- a/tools/perf/util/metricgroup.c
>> +++ b/tools/perf/util/metricgroup.c
>> @@ -231,6 +231,12 @@ static bool match_metric(const char *n, const char *list)
>>   	return false;
>>   }
>>   
>> +static bool match_pe_metric(struct pmu_event *pe, const char *metric)
>> +{
>> +	return match_metric(pe->metric_group, metric) ||
>> +	       match_metric(pe->metric_name, metric);
>> +}
>> +
>>   struct mep {
>>   	struct rb_node nd;
>>   	const char *name;
>> @@ -485,6 +491,40 @@ static bool metricgroup__has_constraint(struct pmu_event *pe)
>>   	return false;
>>   }
>>   
>> +static int metricgroup__add_metric_pmu_event(struct pmu_event *pe,
>> +					     struct strbuf *events,
>> +					     struct list_head *group_list)
>> +{
>> +	const char **ids;
>> +	int idnum;
>> +	struct egroup *eg;
>> +
>> +	pr_debug("metric expr %s for %s\n", pe->metric_expr, pe->metric_name);
>> +
>> +	if (expr__find_other(pe->metric_expr, NULL, &ids, &idnum) < 0)
>> +		return 0;
>> +
>> +	if (events->len > 0)
>> +		strbuf_addf(events, ",");
>> +
>> +	if (metricgroup__has_constraint(pe))
>> +		metricgroup__add_metric_non_group(events, ids, idnum);
>> +	else
>> +		metricgroup__add_metric_weak_group(events, ids, idnum);
>> +
>> +	eg = malloc(sizeof(*eg));
>> +	if (!eg)
>> +		return -ENOMEM;
>> +	eg->ids = ids;
>> +	eg->idnum = idnum;
>> +	eg->metric_name = pe->metric_name;
>> +	eg->metric_expr = pe->metric_expr;
>> +	eg->metric_unit = pe->unit;
>> +	list_add_tail(&eg->nd, group_list);
>> +
>> +	return 0;
>> +}
>> +
>>   static int metricgroup__add_metric(const char *metric, struct strbuf *events,
>>   				   struct list_head *group_list)
>>   {
>> @@ -502,37 +542,12 @@ static int metricgroup__add_metric(const char *metric, struct strbuf *events,
>>   			break;
>>   		if (!pe->metric_expr)
>>   			continue;
>> -		if (match_metric(pe->metric_group, metric) ||
>> -		    match_metric(pe->metric_name, metric)) {
>> -			const char **ids;
>> -			int idnum;
>> -			struct egroup *eg;
>> -
>> -			pr_debug("metric expr %s for %s\n", pe->metric_expr, pe->metric_name);
>>   
>> -			if (expr__find_other(pe->metric_expr,
>> -					     NULL, &ids, &idnum) < 0)
>> -				continue;
>> -			if (events->len > 0)
>> -				strbuf_addf(events, ",");
>> -
>> -			if (metricgroup__has_constraint(pe))
>> -				metricgroup__add_metric_non_group(events, ids, idnum);
>> -			else
>> -				metricgroup__add_metric_weak_group(events, ids, idnum);
>> -
>> -			eg = malloc(sizeof(struct egroup));
>> -			if (!eg) {
>> -				ret = -ENOMEM;
>> -				break;
>> -			}
>> -			eg->ids = ids;
>> -			eg->idnum = idnum;
>> -			eg->metric_name = pe->metric_name;
>> -			eg->metric_expr = pe->metric_expr;
>> -			eg->metric_unit = pe->unit;
>> -			list_add_tail(&eg->nd, group_list);
>> -			ret = 0;
>> +		if (match_pe_metric(pe, metric)) {
>> +			ret = metricgroup__add_metric_pmu_event(pe, events,
>> +								group_list);
>> +			if (ret)
>> +				return ret;
>>   		}
>>   	}
>>   	return ret;
>> -- 
>> 2.16.4
>>
> 
> .
>
Joakim Zhang May 11, 2020, 11:35 a.m. UTC | #3
> -----Original Message-----
> From: John Garry <john.garry@huawei.com>
> Sent: 2020年5月11日 19:25
> To: Jiri Olsa <jolsa@redhat.com>; Joakim Zhang <qiangqing.zhang@nxp.com>
> Cc: peterz@infradead.org; mingo@redhat.com; acme@kernel.org;
> mark.rutland@arm.com; alexander.shishkin@linux.intel.com;
> namhyung@kernel.org; will@kernel.org; ak@linux.intel.com;
> linuxarm@huawei.com; linux-kernel@vger.kernel.org; irogers@google.com;
> robin.murphy@arm.com; zhangshaokun@hisilicon.com;
> linux-arm-kernel@lists.infradead.org
> Subject: Re: [PATCH RFC v3 09/12] perf metricgroup: Split up
> metricgroup__add_metric()
> 
> On 11/05/2020 12:01, Jiri Olsa wrote:
> > On Thu, May 07, 2020 at 07:57:48PM +0800, John Garry wrote:
> >> To aid supporting system event metric groups, break up the function
> >> metricgroup__add_metric() into a part which iterates metrics and a
> >> part which actually "adds" the metric.
> >>
> >> No functional change intended.
> >
> > this no longer applied on Arnaldo's perf/core,
> 
> 
> Hi jirka,
> 
> > it's very busy part now :-\
> 
> Right.
> 
> So I could rebase and resend, but I rather avoid that if possible since the metric
> code is so busy.
> 
> The point is that I would like to see progress on the kernel part first (to expose
> per-PMU sysfs identifier file). Once we agreement there, then I can promote
> this series to non-RFC and ensure I'm based on acme tip.
> 
> Hi Joakim, can you progress
> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flore.ker
> nel.org%2Flinux-arm-kernel%2F20200226073433.5834-1-qiangqing.zhang%40n
> xp.com%2F&amp;data=02%7C01%7Cqiangqing.zhang%40nxp.com%7Cf89617c
> e13bb4617a64d08d7f59e1e4e%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0
> %7C0%7C637247931771912817&amp;sdata=8vOLZrUzBQs69KijOaIXmVqt%2F
> cUtadDK3bCHRFD04kE%3D&amp;reserved=0
> to non-RFC now?

Hi John,

Okay, I will re-send the patch as non-RFC right now.

Best Regards,
Joakim Zhang
> Thanks,
> John
> 
> 
> >
> > jirka
> >
> >>
> >> Signed-off-by: John Garry <john.garry@huawei.com>
> >> ---
> >>   tools/perf/util/metricgroup.c | 75
> ++++++++++++++++++++++++++-----------------
> >>   1 file changed, 45 insertions(+), 30 deletions(-)
> >>
> >> diff --git a/tools/perf/util/metricgroup.c
> >> b/tools/perf/util/metricgroup.c index 926449a7cdbf..d1033756a1bc
> >> 100644
> >> --- a/tools/perf/util/metricgroup.c
> >> +++ b/tools/perf/util/metricgroup.c
> >> @@ -231,6 +231,12 @@ static bool match_metric(const char *n, const
> char *list)
> >>   	return false;
> >>   }
> >>
> >> +static bool match_pe_metric(struct pmu_event *pe, const char
> >> +*metric) {
> >> +	return match_metric(pe->metric_group, metric) ||
> >> +	       match_metric(pe->metric_name, metric); }
> >> +
> >>   struct mep {
> >>   	struct rb_node nd;
> >>   	const char *name;
> >> @@ -485,6 +491,40 @@ static bool metricgroup__has_constraint(struct
> pmu_event *pe)
> >>   	return false;
> >>   }
> >>
> >> +static int metricgroup__add_metric_pmu_event(struct pmu_event *pe,
> >> +					     struct strbuf *events,
> >> +					     struct list_head *group_list) {
> >> +	const char **ids;
> >> +	int idnum;
> >> +	struct egroup *eg;
> >> +
> >> +	pr_debug("metric expr %s for %s\n", pe->metric_expr,
> >> +pe->metric_name);
> >> +
> >> +	if (expr__find_other(pe->metric_expr, NULL, &ids, &idnum) < 0)
> >> +		return 0;
> >> +
> >> +	if (events->len > 0)
> >> +		strbuf_addf(events, ",");
> >> +
> >> +	if (metricgroup__has_constraint(pe))
> >> +		metricgroup__add_metric_non_group(events, ids, idnum);
> >> +	else
> >> +		metricgroup__add_metric_weak_group(events, ids, idnum);
> >> +
> >> +	eg = malloc(sizeof(*eg));
> >> +	if (!eg)
> >> +		return -ENOMEM;
> >> +	eg->ids = ids;
> >> +	eg->idnum = idnum;
> >> +	eg->metric_name = pe->metric_name;
> >> +	eg->metric_expr = pe->metric_expr;
> >> +	eg->metric_unit = pe->unit;
> >> +	list_add_tail(&eg->nd, group_list);
> >> +
> >> +	return 0;
> >> +}
> >> +
> >>   static int metricgroup__add_metric(const char *metric, struct strbuf
> *events,
> >>   				   struct list_head *group_list)
> >>   {
> >> @@ -502,37 +542,12 @@ static int metricgroup__add_metric(const char
> *metric, struct strbuf *events,
> >>   			break;
> >>   		if (!pe->metric_expr)
> >>   			continue;
> >> -		if (match_metric(pe->metric_group, metric) ||
> >> -		    match_metric(pe->metric_name, metric)) {
> >> -			const char **ids;
> >> -			int idnum;
> >> -			struct egroup *eg;
> >> -
> >> -			pr_debug("metric expr %s for %s\n", pe->metric_expr,
> pe->metric_name);
> >>
> >> -			if (expr__find_other(pe->metric_expr,
> >> -					     NULL, &ids, &idnum) < 0)
> >> -				continue;
> >> -			if (events->len > 0)
> >> -				strbuf_addf(events, ",");
> >> -
> >> -			if (metricgroup__has_constraint(pe))
> >> -				metricgroup__add_metric_non_group(events, ids, idnum);
> >> -			else
> >> -				metricgroup__add_metric_weak_group(events, ids,
> idnum);
> >> -
> >> -			eg = malloc(sizeof(struct egroup));
> >> -			if (!eg) {
> >> -				ret = -ENOMEM;
> >> -				break;
> >> -			}
> >> -			eg->ids = ids;
> >> -			eg->idnum = idnum;
> >> -			eg->metric_name = pe->metric_name;
> >> -			eg->metric_expr = pe->metric_expr;
> >> -			eg->metric_unit = pe->unit;
> >> -			list_add_tail(&eg->nd, group_list);
> >> -			ret = 0;
> >> +		if (match_pe_metric(pe, metric)) {
> >> +			ret = metricgroup__add_metric_pmu_event(pe, events,
> >> +								group_list);
> >> +			if (ret)
> >> +				return ret;
> >>   		}
> >>   	}
> >>   	return ret;
> >> --
> >> 2.16.4
> >>
> >
> > .
> >
diff mbox series

Patch

diff --git a/tools/perf/util/metricgroup.c b/tools/perf/util/metricgroup.c
index 926449a7cdbf..d1033756a1bc 100644
--- a/tools/perf/util/metricgroup.c
+++ b/tools/perf/util/metricgroup.c
@@ -231,6 +231,12 @@  static bool match_metric(const char *n, const char *list)
 	return false;
 }
 
+static bool match_pe_metric(struct pmu_event *pe, const char *metric)
+{
+	return match_metric(pe->metric_group, metric) ||
+	       match_metric(pe->metric_name, metric);
+}
+
 struct mep {
 	struct rb_node nd;
 	const char *name;
@@ -485,6 +491,40 @@  static bool metricgroup__has_constraint(struct pmu_event *pe)
 	return false;
 }
 
+static int metricgroup__add_metric_pmu_event(struct pmu_event *pe,
+					     struct strbuf *events,
+					     struct list_head *group_list)
+{
+	const char **ids;
+	int idnum;
+	struct egroup *eg;
+
+	pr_debug("metric expr %s for %s\n", pe->metric_expr, pe->metric_name);
+
+	if (expr__find_other(pe->metric_expr, NULL, &ids, &idnum) < 0)
+		return 0;
+
+	if (events->len > 0)
+		strbuf_addf(events, ",");
+
+	if (metricgroup__has_constraint(pe))
+		metricgroup__add_metric_non_group(events, ids, idnum);
+	else
+		metricgroup__add_metric_weak_group(events, ids, idnum);
+
+	eg = malloc(sizeof(*eg));
+	if (!eg)
+		return -ENOMEM;
+	eg->ids = ids;
+	eg->idnum = idnum;
+	eg->metric_name = pe->metric_name;
+	eg->metric_expr = pe->metric_expr;
+	eg->metric_unit = pe->unit;
+	list_add_tail(&eg->nd, group_list);
+
+	return 0;
+}
+
 static int metricgroup__add_metric(const char *metric, struct strbuf *events,
 				   struct list_head *group_list)
 {
@@ -502,37 +542,12 @@  static int metricgroup__add_metric(const char *metric, struct strbuf *events,
 			break;
 		if (!pe->metric_expr)
 			continue;
-		if (match_metric(pe->metric_group, metric) ||
-		    match_metric(pe->metric_name, metric)) {
-			const char **ids;
-			int idnum;
-			struct egroup *eg;
-
-			pr_debug("metric expr %s for %s\n", pe->metric_expr, pe->metric_name);
 
-			if (expr__find_other(pe->metric_expr,
-					     NULL, &ids, &idnum) < 0)
-				continue;
-			if (events->len > 0)
-				strbuf_addf(events, ",");
-
-			if (metricgroup__has_constraint(pe))
-				metricgroup__add_metric_non_group(events, ids, idnum);
-			else
-				metricgroup__add_metric_weak_group(events, ids, idnum);
-
-			eg = malloc(sizeof(struct egroup));
-			if (!eg) {
-				ret = -ENOMEM;
-				break;
-			}
-			eg->ids = ids;
-			eg->idnum = idnum;
-			eg->metric_name = pe->metric_name;
-			eg->metric_expr = pe->metric_expr;
-			eg->metric_unit = pe->unit;
-			list_add_tail(&eg->nd, group_list);
-			ret = 0;
+		if (match_pe_metric(pe, metric)) {
+			ret = metricgroup__add_metric_pmu_event(pe, events,
+								group_list);
+			if (ret)
+				return ret;
 		}
 	}
 	return ret;