Re: Error message not relevant

2013-11-20 Thread Mulyadi Santosa
On Wed, Nov 20, 2013 at 11:43 PM, Nav Kamal wrote: > Am learning to write LKMs and wrote this program : > > #include > #include > static int module_entry(void){ > printk(KERN_ALERT "Hello World !!\n"); > return 0; > } > static void exit_module(void){ > printk(KERN_ALERT "By

Re: Error message not relevant

2013-11-20 Thread Santosh Sivaraj
* Nav Kamal wrote (on 2013-11-20 16:43:26 +): > Am learning to write LKMs and wrote this program : > > #include > #include > static int module_entry(void){ > printk(KERN_ALERT "Hello World !!\n"); > return 0; > } > static void exit_module(void){ > printk(KERN_ALERT "B

Error message not relevant

2013-11-20 Thread Nav Kamal
Am learning to write LKMs and wrote this program : #include #include static int module_entry(void){ printk(KERN_ALERT "Hello World !!\n"); return 0; } static void exit_module(void){ printk(KERN_ALERT "Bye World \n"); } module_init(module_entry); module_exit(exit_module