Преглед изворни кода

uprobes: Kill module_init() and module_exit()

Turn module_init() into __initcall() and kill module_exit().

This code can't be compiled as a module so these module_*()
calls only add the confusion, especially if arch-dependant
code needs its own initialization hooks.

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Oleg Nesterov пре 11 година
родитељ
комит
736e89d9f7
1 измењених фајлова са 1 додато и 6 уклоњено
  1. 1 6
      kernel/events/uprobes.c

+ 1 - 6
kernel/events/uprobes.c

@@ -1941,9 +1941,4 @@ static int __init init_uprobes(void)
 
 	return register_die_notifier(&uprobe_exception_nb);
 }
-module_init(init_uprobes);
-
-static void __exit exit_uprobes(void)
-{
-}
-module_exit(exit_uprobes);
+__initcall(init_uprobes);