The patch titled m68k, mm: set all online nodes in N_NORMAL_MEMORY has been removed from the -mm tree. Its filename was m68k-mm-set-all-online-nodes-in-n_normal_memory.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: m68k, mm: set all online nodes in N_NORMAL_MEMORY From: David Rientjes <rientjes@xxxxxxxxxx> For m68k, N_NORMAL_MEMORY represents all nodes that have present memory since it does not support HIGHMEM. This patch sets the bit at the time the node is brought online. If N_NORMAL_MEMORY is not accurate, slub may encounter errors since it uses this nodemask to setup per-cache kmem_cache_node data structures. Signed-off-by: David Rientjes <rientjes@xxxxxxxxxx> Cc: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/m68k/mm/init_mm.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN arch/m68k/mm/init_mm.c~m68k-mm-set-all-online-nodes-in-n_normal_memory arch/m68k/mm/init_mm.c --- a/arch/m68k/mm/init_mm.c~m68k-mm-set-all-online-nodes-in-n_normal_memory +++ a/arch/m68k/mm/init_mm.c @@ -57,6 +57,8 @@ void __init m68k_setup_node(int node) } #endif pg_data_map[node].bdata = bootmem_node_data + node; + if (node_present_pages(node)) + node_set_state(node, N_NORMAL_MEMORY); node_set_online(node); } _ Patches currently in -mm which might be from rientjes@xxxxxxxxxx are origin.patch linux-next.patch oom-use-pte-pages-in-oom-score.patch arch-mm-filter-disallowed-nodes-from-arch-specific-show_mem-functions.patch mm-per-node-vmstat-show-proper-vmstats.patch mm-increase-reclaim_distance-to-30.patch oom-replace-pf_oom_origin-with-toggling-oom_score_adj.patch oom-replace-pf_oom_origin-with-toggling-oom_score_adj-update.patch mm-rename-alloc_pages_exact.patch mm-make-new-alloc_pages_exact.patch mm-reuse-__free_pages_exact-in-__alloc_pages_exact.patch mm-thp-optimize-memcg-charge-in-khugepaged.patch mm-break-out-page-allocation-warning-code.patch mm-print-vmalloc-state-after-allocation-failures.patch parisc-set-memory-ranges-in-n_normal_memory-when-onlined.patch alpha-mm-set-all-online-nodes-in-n_normal_memory.patch m32r-mm-set-all-online-nodes-in-n_normal_memory.patch jbd-remove-dependency-on-__gfp_nofail.patch cgroups-read-write-lock-clone_thread-forking-per-threadgroup.patch cgroups-add-per-thread-subsystem-callbacks.patch cgroups-make-procs-file-writable.patch cgroups-use-flex_array-in-attach_proc.patch cpusets-randomize-node-rotor-used-in-cpuset_mem_spread_node.patch cpusets-randomize-node-rotor-used-in-cpuset_mem_spread_node-cpusets-initialize-spread-rotor-lazily.patch cpusets-randomize-node-rotor-used-in-cpuset_mem_spread_node-cpusets-initialize-spread-rotor-lazily-fix.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