X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=Documentation%2Fcpu-hotplug.txt;h=1bcf69996c9df74fba87c25949c05285ff604d3b;hb=d66fd908acc8ba88541ecc570d89b0243f947c5e;hp=57a09f99ecb08977d51d883ee5d6caecbc0967ba;hpb=6303dbf570e410067380daec670fdb4137ac0d1d;p=powerpc.git diff --git a/Documentation/cpu-hotplug.txt b/Documentation/cpu-hotplug.txt index 57a09f99ec..1bcf69996c 100644 --- a/Documentation/cpu-hotplug.txt +++ b/Documentation/cpu-hotplug.txt @@ -97,13 +97,13 @@ at which time hotplug is disabled. You really dont need to manipulate any of the system cpu maps. They should be read-only for most use. When setting up per-cpu resources almost always use -cpu_possible_map/for_each_cpu() to iterate. +cpu_possible_map/for_each_possible_cpu() to iterate. Never use anything other than cpumask_t to represent bitmap of CPUs. #include -for_each_cpu - Iterate over cpu_possible_map +for_each_possible_cpu - Iterate over cpu_possible_map for_each_online_cpu - Iterate over cpu_online_map for_each_present_cpu - Iterate over cpu_present_map for_each_cpu_mask(x,mask) - Iterate over some random collection of cpu mask.