Lets say my kernel module have the init and exit function bellow:
module_init(init_module);
module_exit(cleanup_module);
Can the kernel module be removed, thus calling cleanup_module(), before the module init has completed/while init_module() is being executed?