The patch titled Subject: mm/compaction: don't use modular references for non modular code has been removed from the -mm tree. Its filename was mm-compaction-introduce-kcompactd-fix-2.patch This patch was dropped because it was folded into mm-compaction-introduce-kcompactd.patch ------------------------------------------------------ From: Paul Gortmaker <paul.gortmaker@xxxxxxxxxxxxx> Subject: mm/compaction: don't use modular references for non modular code replace module_init with subsys_initcall ; which will be two levels earlier, but mm smells like a subsystem to me. Compile tested only. Signed-off-by: Paul Gortmaker <paul.gortmaker@xxxxxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/compaction.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff -puN mm/compaction.c~mm-compaction-introduce-kcompactd-fix-2 mm/compaction.c --- a/mm/compaction.c~mm-compaction-introduce-kcompactd-fix-2 +++ a/mm/compaction.c @@ -20,7 +20,6 @@ #include <linux/kasan.h> #include <linux/kthread.h> #include <linux/freezer.h> -#include <linux/module.h> #include "internal.h" #ifdef CONFIG_COMPACTION @@ -1954,7 +1953,6 @@ static int __init kcompactd_init(void) hotcpu_notifier(cpu_callback, 0); return 0; } - -module_init(kcompactd_init) +subsys_initcall(kcompactd_init) #endif /* CONFIG_COMPACTION */ _ Patches currently in -mm which might be from paul.gortmaker@xxxxxxxxxxxxx are mm-compaction-introduce-kcompactd.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