#include #include static int __init hang_init(void) { while(1); return 0; } static void __exit hang_exit(void) { } module_init(hang_init); module_exit(hang_exit);