We may as well make usermodehelper_init() core_initcall as well, to make sure its services are avaialble to all the other initcall levels. --- 25-akpm/kernel/kmod.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/kmod.c~usermodehelper_init-use-core_initcall kernel/kmod.c --- 25/kernel/kmod.c~usermodehelper_init-use-core_initcall 2004-05-08 04:22:23.119603600 -0700 +++ 25-akpm/kernel/kmod.c 2004-05-08 04:22:28.096846944 -0700 @@ -269,4 +269,4 @@ static __init int usermodehelper_init(vo BUG_ON(!khelper_wq); return 0; } -__initcall(usermodehelper_init); +core_initcall(usermodehelper_init); _