|
@@ -200,7 +200,7 @@ static const struct attribute_group *hotplugable_cpu_attr_groups[] = {
|
|
|
|
|
|
struct cpu_attr {
|
|
|
struct device_attribute attr;
|
|
|
- const struct cpumask *const * const map;
|
|
|
+ const struct cpumask *const map;
|
|
|
};
|
|
|
|
|
|
static ssize_t show_cpus_attr(struct device *dev,
|
|
@@ -209,7 +209,7 @@ static ssize_t show_cpus_attr(struct device *dev,
|
|
|
{
|
|
|
struct cpu_attr *ca = container_of(attr, struct cpu_attr, attr);
|
|
|
|
|
|
- return cpumap_print_to_pagebuf(true, buf, *ca->map);
|
|
|
+ return cpumap_print_to_pagebuf(true, buf, ca->map);
|
|
|
}
|
|
|
|
|
|
#define _CPU_ATTR(name, map) \
|
|
@@ -217,9 +217,9 @@ static ssize_t show_cpus_attr(struct device *dev,
|
|
|
|
|
|
/* Keep in sync with cpu_subsys_attrs */
|
|
|
static struct cpu_attr cpu_attrs[] = {
|
|
|
- _CPU_ATTR(online, &cpu_online_mask),
|
|
|
- _CPU_ATTR(possible, &cpu_possible_mask),
|
|
|
- _CPU_ATTR(present, &cpu_present_mask),
|
|
|
+ _CPU_ATTR(online, &__cpu_online_mask),
|
|
|
+ _CPU_ATTR(possible, &__cpu_possible_mask),
|
|
|
+ _CPU_ATTR(present, &__cpu_present_mask),
|
|
|
};
|
|
|
|
|
|
/*
|