powerpc/cpumask: Convert hotplug-cpu code to new cpumask API
Convert hotplug-cpu code to new cpumask API. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
committed by
Benjamin Herrenschmidt
parent
cc1ba8ea6d
commit
8729faaa5e
@@ -163,7 +163,7 @@ static int pseries_cpu_disable(void)
|
|||||||
|
|
||||||
/*fix boot_cpuid here*/
|
/*fix boot_cpuid here*/
|
||||||
if (cpu == boot_cpuid)
|
if (cpu == boot_cpuid)
|
||||||
boot_cpuid = any_online_cpu(cpu_online_map);
|
boot_cpuid = cpumask_any(cpu_online_mask);
|
||||||
|
|
||||||
/* FIXME: abstract this to not be platform specific later on */
|
/* FIXME: abstract this to not be platform specific later on */
|
||||||
xics_migrate_irqs_away();
|
xics_migrate_irqs_away();
|
||||||
@@ -231,7 +231,7 @@ static void pseries_cpu_die(unsigned int cpu)
|
|||||||
static int pseries_add_processor(struct device_node *np)
|
static int pseries_add_processor(struct device_node *np)
|
||||||
{
|
{
|
||||||
unsigned int cpu;
|
unsigned int cpu;
|
||||||
cpumask_t candidate_map, tmp = CPU_MASK_NONE;
|
cpumask_var_t candidate_mask, tmp;
|
||||||
int err = -ENOSPC, len, nthreads, i;
|
int err = -ENOSPC, len, nthreads, i;
|
||||||
const u32 *intserv;
|
const u32 *intserv;
|
||||||
|
|
||||||
@@ -239,48 +239,53 @@ static int pseries_add_processor(struct device_node *np)
|
|||||||
if (!intserv)
|
if (!intserv)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
zalloc_cpumask_var(&candidate_mask, GFP_KERNEL);
|
||||||
|
zalloc_cpumask_var(&tmp, GFP_KERNEL);
|
||||||
|
|
||||||
nthreads = len / sizeof(u32);
|
nthreads = len / sizeof(u32);
|
||||||
for (i = 0; i < nthreads; i++)
|
for (i = 0; i < nthreads; i++)
|
||||||
cpu_set(i, tmp);
|
cpumask_set_cpu(i, tmp);
|
||||||
|
|
||||||
cpu_maps_update_begin();
|
cpu_maps_update_begin();
|
||||||
|
|
||||||
BUG_ON(!cpus_subset(cpu_present_map, cpu_possible_map));
|
BUG_ON(!cpumask_subset(cpu_present_mask, cpu_possible_mask));
|
||||||
|
|
||||||
/* Get a bitmap of unoccupied slots. */
|
/* Get a bitmap of unoccupied slots. */
|
||||||
cpus_xor(candidate_map, cpu_possible_map, cpu_present_map);
|
cpumask_xor(candidate_mask, cpu_possible_mask, cpu_present_mask);
|
||||||
if (cpus_empty(candidate_map)) {
|
if (cpumask_empty(candidate_mask)) {
|
||||||
/* If we get here, it most likely means that NR_CPUS is
|
/* If we get here, it most likely means that NR_CPUS is
|
||||||
* less than the partition's max processors setting.
|
* less than the partition's max processors setting.
|
||||||
*/
|
*/
|
||||||
printk(KERN_ERR "Cannot add cpu %s; this system configuration"
|
printk(KERN_ERR "Cannot add cpu %s; this system configuration"
|
||||||
" supports %d logical cpus.\n", np->full_name,
|
" supports %d logical cpus.\n", np->full_name,
|
||||||
cpus_weight(cpu_possible_map));
|
cpumask_weight(cpu_possible_mask));
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (!cpus_empty(tmp))
|
while (!cpumask_empty(tmp))
|
||||||
if (cpus_subset(tmp, candidate_map))
|
if (cpumask_subset(tmp, candidate_mask))
|
||||||
/* Found a range where we can insert the new cpu(s) */
|
/* Found a range where we can insert the new cpu(s) */
|
||||||
break;
|
break;
|
||||||
else
|
else
|
||||||
cpus_shift_left(tmp, tmp, nthreads);
|
cpumask_shift_left(tmp, tmp, nthreads);
|
||||||
|
|
||||||
if (cpus_empty(tmp)) {
|
if (cpumask_empty(tmp)) {
|
||||||
printk(KERN_ERR "Unable to find space in cpu_present_map for"
|
printk(KERN_ERR "Unable to find space in cpu_present_map for"
|
||||||
" processor %s with %d thread(s)\n", np->name,
|
" processor %s with %d thread(s)\n", np->name,
|
||||||
nthreads);
|
nthreads);
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
for_each_cpu_mask(cpu, tmp) {
|
for_each_cpu(cpu, tmp) {
|
||||||
BUG_ON(cpu_isset(cpu, cpu_present_map));
|
BUG_ON(cpumask_test_cpu(cpu, cpu_present_mask));
|
||||||
set_cpu_present(cpu, true);
|
set_cpu_present(cpu, true);
|
||||||
set_hard_smp_processor_id(cpu, *intserv++);
|
set_hard_smp_processor_id(cpu, *intserv++);
|
||||||
}
|
}
|
||||||
err = 0;
|
err = 0;
|
||||||
out_unlock:
|
out_unlock:
|
||||||
cpu_maps_update_done();
|
cpu_maps_update_done();
|
||||||
|
free_cpumask_var(candidate_mask);
|
||||||
|
free_cpumask_var(tmp);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -311,7 +316,7 @@ static void pseries_remove_processor(struct device_node *np)
|
|||||||
set_hard_smp_processor_id(cpu, -1);
|
set_hard_smp_processor_id(cpu, -1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (cpu == NR_CPUS)
|
if (cpu >= nr_cpu_ids)
|
||||||
printk(KERN_WARNING "Could not find cpu to remove "
|
printk(KERN_WARNING "Could not find cpu to remove "
|
||||||
"with physical id 0x%x\n", intserv[i]);
|
"with physical id 0x%x\n", intserv[i]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user