The patch titled Memoryless node: Allow profiling data to fall back to other nodes has been removed from the -mm tree. Its filename was memoryless-node-allow-profiling-data-to-fall-back-to-other-nodes.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ Subject: Memoryless node: Allow profiling data to fall back to other nodes From: Lee Schermerhorn <lee.schermerhorn@xxxxxx> Processors on memoryless nodes must be able to fall back to remote nodes in order to get a profiling buffer. This may lead to excessive NUMA traffic but I think we should allow this rather than failing. Signed-off-by: Christoph Lameter <clameter@xxxxxxx> Acked-by: Nishanth Aravamudan <nacc@xxxxxxxxxx> Acked-by: Lee Schermerhorn <lee.schermerhorn@xxxxxx> Acked-by: Bob Picco <bob.picco@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/profile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/profile.c~memoryless-node-allow-profiling-data-to-fall-back-to-other-nodes kernel/profile.c --- a/kernel/profile.c~memoryless-node-allow-profiling-data-to-fall-back-to-other-nodes +++ a/kernel/profile.c @@ -346,7 +346,7 @@ static int __devinit profile_cpu_callbac per_cpu(cpu_profile_flip, cpu) = 0; if (!per_cpu(cpu_profile_hits, cpu)[1]) { page = alloc_pages_node(node, - GFP_KERNEL | __GFP_ZERO | GFP_THISNODE, + GFP_KERNEL | __GFP_ZERO, 0); if (!page) return NOTIFY_BAD; @@ -354,7 +354,7 @@ static int __devinit profile_cpu_callbac } if (!per_cpu(cpu_profile_hits, cpu)[0]) { page = alloc_pages_node(node, - GFP_KERNEL | __GFP_ZERO | GFP_THISNODE, + GFP_KERNEL | __GFP_ZERO, 0); if (!page) goto out_free; _ Patches currently in -mm which might be from lee.schermerhorn@xxxxxx are fix-missing-numa_zonelist_order-sysctl.patch document-linux-memory-policy-v3.patch memoryless-node-allow-profiling-data-to-fall-back-to-other-nodes.patch memoryless-nodes-update-memory-policy-and-page-migration.patch add-n_cpu-node-state.patch memoryless-nodes-fix-gfp_thisnode-behavior.patch memoryless-nodes-use-node_memory_map-for-cpusets.patch memoryless-nodes-drop-one-memoryless-node-boot-warning.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