From: Rusty Russell Date: Wed, 31 Dec 2008 23:42:19 +0000 (+1030) Subject: cpumask: Use find_last_bit() X-Git-Tag: Ubuntu-5.2.0-15.16~31681^2~11^2~20 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e0c0ba736547e81c4f986ce192307c549d214167;p=mirror_ubuntu-eoan-kernel.git cpumask: Use find_last_bit() Impact: cleanup There's one obvious place to use it: to find the highest possible cpu. Signed-off-by: Rusty Russell --- diff --git a/init/main.c b/init/main.c index 84d3732c0ce5..546ebd2f44ba 100644 --- a/init/main.c +++ b/init/main.c @@ -380,12 +380,7 @@ EXPORT_SYMBOL(nr_cpu_ids); /* An arch may set nr_cpu_ids earlier if needed, so this would be redundant */ static void __init setup_nr_cpu_ids(void) { - int cpu, highest_cpu = 0; - - for_each_possible_cpu(cpu) - highest_cpu = cpu; - - nr_cpu_ids = highest_cpu + 1; + nr_cpu_ids = find_last_bit(cpumask_bits(cpu_possible_mask),NR_CPUS) + 1; } #ifndef CONFIG_HAVE_SETUP_PER_CPU_AREA