The patch titled for_each_possible_cpu: x86_64 has been removed from the -mm tree. Its filename is for_each_possible_cpu-x86_64.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> for_each_cpu() actually iterates across all possible CPUs. We've had mistakes in the past where people were using for_each_cpu() where they should have been iterating across only online or present CPUs. This is inefficient and possibly buggy. We're renaming for_each_cpu() to for_each_possible_cpu() to avoid this in the future. This patch replaces for_each_cpu with for_each_possible_cpu. Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> Acked-by: Andi Kleen <ak@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/asm-x86_64/percpu.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-x86_64/percpu.h~for_each_possible_cpu-x86_64 include/asm-x86_64/percpu.h --- devel/include/asm-x86_64/percpu.h~for_each_possible_cpu-x86_64 2006-04-18 22:19:57.000000000 -0700 +++ devel-akpm/include/asm-x86_64/percpu.h 2006-04-18 22:19:57.000000000 -0700 @@ -26,7 +26,7 @@ #define percpu_modcopy(pcpudst, src, size) \ do { \ unsigned int __i; \ - for_each_cpu(__i) \ + for_each_possible_cpu(__i) \ memcpy((pcpudst)+__per_cpu_offset(__i), \ (src), (size)); \ } while (0) _ Patches currently in -mm which might be from kamezawa.hiroyu@xxxxxxxxxxxxxx are origin.patch acpi-memory-hotplug-cannot-manage-_crs-with-plural-resoureces.patch for_each_possible_cpu-under-drivers-acpi.patch ia64-acpi_memhotplug-fix.patch for_each_possible_cpu-for-arm.patch for_each_possible_cpu-mips.patch x86_64-mm-hotadd-reserve-fix-fix-fix.patch for_each_possible_cpu-xfs.patch wait_table-and-zonelist-initializing-for-memory-hotaddadd-return-code-for-init_current_empty_zone.patch wait_table-and-zonelist-initializing-for-memory-hotadd-wait_table-initialization.patch wait_table-and-zonelist-initializing-for-memory-hotadd-wait_table-initialization-fixes.patch wait_table-and-zonelist-initializing-for-memory-hotadd-update-zonelists.patch support-for-panic-at-oom.patch preserve-write-permissions-in-migration-entries.patch preserve-write-permissions-in-migration-entries-fix.patch read-write-migration-entries-implement-correct-behavior-in-copy_one_pte.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html