Re: [PLUG] kernel module compilation

2013-03-11 Thread Prashant Shah
--- On Thu, Mar 7, 2013 at 12:20 PM, Sagar Padhye sgr.m@gmail.com wrote: | I am trying to learn linux kernel module programming using this document : | http://www.tldp.org/LDP/lkmpg/2.6/html/index.html \-- try http://lwn.net/Kernel/LDD3/ ___ Pune

Re: [PLUG] kernel module compilation

2013-03-11 Thread Sagar Padhye
On 03/08/2013 03:09 PM, Shakthi Kannan wrote: Hi, --- On Thu, Mar 7, 2013 at 12:20 PM, Sagar Padhye sgr.m@gmail.com wrote: | I am trying to learn linux kernel module programming using this document : | http://www.tldp.org/LDP/lkmpg/2.6/html/index.html \-- Can you try these examples?

Re: [PLUG] kernel module compilation

2013-03-08 Thread Shakthi Kannan
Hi, --- On Thu, Mar 7, 2013 at 12:20 PM, Sagar Padhye sgr.m@gmail.com wrote: | I am trying to learn linux kernel module programming using this document : | http://www.tldp.org/LDP/lkmpg/2.6/html/index.html \-- Can you try these examples?

Re: [PLUG] kernel module

2009-07-02 Thread abhi
on Wed, 1 Jul 2009 13:13:53 +0530 Shakthi Kannan shakthim...@gmail.com replied to : | Now how do i pass args to my module /call it externally? \-- by: |What do you mean by 'call it externally'? Hi shakti, by calling externally, i mean once i've insmoded a module(say the simple hello world),

Re: [PLUG] Kernel module

2009-07-01 Thread abhi
hi shakti kannan, I got ur code and the tut to passing args to a module. And now after making modifications, my code works. Now how do i pass args to my module /call it externally? Thanks, Cheers -- The best security against revolution is in constant correction of abuses and the introduction

Re: [PLUG] Kernel module

2009-07-01 Thread Shakthi Kannan
Hi, --- On Wed, Jul 1, 2009 at 1:04 PM, abhiabhi.eleme...@gmail.com wrote: | Now how do i pass args to my module /call it externally? \-- What do you mean by 'call it externally'? I'd suggest that you read: Jonathan Corbet, Alessandro Rubini, and Greg Kroah-Hartman. Linux Device Drivers. (3rd

[PLUG] kernel module

2009-06-29 Thread abhi
Hi. I have begun writing kernel modules and facing an issue regarding passing args to the module: Here's my code: #includelinux/module.h #includelinux/kernel.h #includelinux/init.h static char *agent_name = UNKNOWN; static int agent_code = 47; MODULE_PARM (agent_name, s); MODULE_PARM