mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 06:43:09 +00:00
perf metrics: Avoid segv if default metricgroup isn't set
A metric is default by having "Default" within its groups. The default
metricgroup name needn't be set and this can result in segv in
default_metricgroup_cmp and perf_stat__print_shadow_stats_metricgroup
that assume it has a value when there is a Default metric group. To
avoid the segv initialize the value to "".
Fixes: 1c0e47956a
("perf metrics: Sort the Default metricgroup")
Signed-off-by: Ian Rogers <irogers@google.com>
Reviewed-and-tested-by: Ilkka Koskinen <ilkka@os.amperecomputing.com>
Cc: James Clark <james.clark@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Mike Leach <mike.leach@linaro.org>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: John Garry <john.g.garry@oracle.com>
Cc: stable@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
Link: https://lore.kernel.org/r/20231204182330.654255-1-irogers@google.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
parent
57686a72da
commit
e2b005d6ec
@ -225,7 +225,7 @@ static struct metric *metric__new(const struct pmu_metric *pm,
|
||||
|
||||
m->pmu = pm->pmu ?: "cpu";
|
||||
m->metric_name = pm->metric_name;
|
||||
m->default_metricgroup_name = pm->default_metricgroup_name;
|
||||
m->default_metricgroup_name = pm->default_metricgroup_name ?: "";
|
||||
m->modifier = NULL;
|
||||
if (modifier) {
|
||||
m->modifier = strdup(modifier);
|
||||
|
Loading…
Reference in New Issue
Block a user