mirror of https://gitee.com/openkylin/linux.git
perf: Constify static struct attribute_group
The only usage is to put their addresses in an array of pointers to const struct attribute group. Make them const to allow the compiler to put them in read-only memory. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Link: https://lore.kernel.org/r/20210117212847.21319-5-rikard.falkeborn@gmail.com Signed-off-by: Will Deacon <will@kernel.org>
This commit is contained in:
parent
c2c4d5c051
commit
f0c140481d
|
@ -1376,7 +1376,7 @@ static struct attribute *pmu_attrs[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group pmu_attr_group = {
|
||||
static const struct attribute_group pmu_attr_group = {
|
||||
.attrs = pmu_attrs,
|
||||
};
|
||||
|
||||
|
|
|
@ -616,7 +616,7 @@ static struct attribute *arm_cmn_cpumask_attrs[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group arm_cmn_cpumask_attr_group = {
|
||||
static const struct attribute_group arm_cmn_cpumask_attr_group = {
|
||||
.attrs = arm_cmn_cpumask_attrs,
|
||||
};
|
||||
|
||||
|
|
|
@ -159,7 +159,7 @@ static struct attribute *dmc620_pmu_events_attrs[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group dmc620_pmu_events_attr_group = {
|
||||
static const struct attribute_group dmc620_pmu_events_attr_group = {
|
||||
.name = "events",
|
||||
.attrs = dmc620_pmu_events_attrs,
|
||||
};
|
||||
|
@ -222,7 +222,7 @@ static struct attribute *dmc620_pmu_formats_attrs[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group dmc620_pmu_format_attr_group = {
|
||||
static const struct attribute_group dmc620_pmu_format_attr_group = {
|
||||
.name = "format",
|
||||
.attrs = dmc620_pmu_formats_attrs,
|
||||
};
|
||||
|
|
|
@ -577,7 +577,7 @@ static struct attribute *armpmu_common_attrs[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group armpmu_common_attr_group = {
|
||||
static const struct attribute_group armpmu_common_attr_group = {
|
||||
.attrs = armpmu_common_attrs,
|
||||
};
|
||||
|
||||
|
|
|
@ -493,7 +493,7 @@ static struct attribute *smmu_pmu_cpumask_attrs[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
static struct attribute_group smmu_pmu_cpumask_group = {
|
||||
static const struct attribute_group smmu_pmu_cpumask_group = {
|
||||
.attrs = smmu_pmu_cpumask_attrs,
|
||||
};
|
||||
|
||||
|
@ -548,7 +548,7 @@ static umode_t smmu_pmu_event_is_visible(struct kobject *kobj,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static struct attribute_group smmu_pmu_events_group = {
|
||||
static const struct attribute_group smmu_pmu_events_group = {
|
||||
.name = "events",
|
||||
.attrs = smmu_pmu_events,
|
||||
.is_visible = smmu_pmu_event_is_visible,
|
||||
|
@ -583,7 +583,7 @@ static struct attribute *smmu_pmu_identifier_attrs[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
static struct attribute_group smmu_pmu_identifier_group = {
|
||||
static const struct attribute_group smmu_pmu_identifier_group = {
|
||||
.attrs = smmu_pmu_identifier_attrs,
|
||||
.is_visible = smmu_pmu_identifier_attr_visible,
|
||||
};
|
||||
|
@ -602,7 +602,7 @@ static struct attribute *smmu_pmu_formats[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
static struct attribute_group smmu_pmu_format_group = {
|
||||
static const struct attribute_group smmu_pmu_format_group = {
|
||||
.name = "format",
|
||||
.attrs = smmu_pmu_formats,
|
||||
};
|
||||
|
|
|
@ -146,7 +146,7 @@ static struct attribute *arm_spe_pmu_cap_attr[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group arm_spe_pmu_cap_group = {
|
||||
static const struct attribute_group arm_spe_pmu_cap_group = {
|
||||
.name = "caps",
|
||||
.attrs = arm_spe_pmu_cap_attr,
|
||||
};
|
||||
|
@ -227,7 +227,7 @@ static struct attribute *arm_spe_pmu_formats_attr[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group arm_spe_pmu_format_group = {
|
||||
static const struct attribute_group arm_spe_pmu_format_group = {
|
||||
.name = "format",
|
||||
.attrs = arm_spe_pmu_formats_attr,
|
||||
};
|
||||
|
@ -247,7 +247,7 @@ static struct attribute *arm_spe_pmu_attrs[] = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
static struct attribute_group arm_spe_pmu_group = {
|
||||
static const struct attribute_group arm_spe_pmu_group = {
|
||||
.attrs = arm_spe_pmu_attrs,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue