Peter Zijlstra <[EMAIL PROTECTED]> writes:
>>  
>> +int get_nr_inodes(void)
>> +{
>> +    int cpu;
>> +    int counter = 0;
>> +
>> +    for_each_possible_cpu(cpu)
>> +        counter += per_cpu(nr_inodes, cpu);
>> +    if (counter < 0)
>> +            counter = 0;
>> +    return counter;
>> +}
>
> It would be good to get a cpu hotplug handler here and move to
> for_each_online_cpu(). People are wanting distro's to be build with
> NR_CPUS=4096.

Doesn't matter, possible cpus is always only set to what the
machine supports.

-Andi
-- 
[EMAIL PROTECTED]
--
To unsubscribe from this list: send the line "unsubscribe kernel-testers" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to