lib/percpu_test.c code allows to compile either as a loadable modules or builtin into the kernel.
Current code returns -EAGAIN on successful termination from module_init. Such a fail will directly unload the module and hence there is no scope to execute percpu_test_exit on module_exit. Signed-off-by: Pravin Shedge <pravin.shedge4li...@gmail.com> --- lib/percpu_test.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/percpu_test.c b/lib/percpu_test.c index 0b5d14d..ea31adb 100644 --- a/lib/percpu_test.c +++ b/lib/percpu_test.c @@ -126,12 +126,7 @@ static int __init percpu_test_init(void) return -EAGAIN; /* Fail will directly unload the module */ } -static void __exit percpu_test_exit(void) -{ -} - module_init(percpu_test_init) -module_exit(percpu_test_exit) MODULE_LICENSE("GPL"); MODULE_AUTHOR("Greg Thelen"); -- 2.7.4