The patch titled pure_initcall ID inconsistency has been removed from the -mm tree. Its filename was pure_initcall-id-inconsistency.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pure_initcall ID inconsistency From: Michael Buesch <mb@xxxxxxxxx> pure_initcall uses the same ID as core_initcall. I guess that's a typo and it should use its own ID. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/init.h~pure_initcall-id-inconsistency include/linux/init.h --- a/include/linux/init.h~pure_initcall-id-inconsistency +++ a/include/linux/init.h @@ -114,7 +114,7 @@ void prepare_namespace(void); * * This only exists for built-in code, not for modules. */ -#define pure_initcall(fn) __define_initcall("0",fn,1) +#define pure_initcall(fn) __define_initcall("0",fn,0) #define core_initcall(fn) __define_initcall("1",fn,1) #define core_initcall_sync(fn) __define_initcall("1s",fn,1s) _ Patches currently in -mm which might be from mb@xxxxxxxxx are origin.patch merge-the-sonics-silicon-backplane-subsystem.patch merge-the-sonics-silicon-backplane-subsystem-fix.patch avoid-ssb-compililation-on-s390.patch b44-ssb-fix-irq-routing-bits-on-the-backplane.patch merge-the-sonics-silicon-backplane-subsystem-update.patch ssb-compile-fix.patch watchdog-support-3.patch ssb-add-a-driver-for-the-broadcom-ohci-core.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