Re: Debugging kernel modules

2010-12-03 Thread Mulyadi Santosa
Hi On Sat, Dec 4, 2010 at 05:19, Dev Null wrote: > Hello, BTW, is it your daily behaviour to hijack someones' else message thread? Is it hard for you to press "Compose Mail" button and start fresh new thread by your own? > How to debug the running kernel module on any production server? Do you

Re: Debugging kernel modules

2010-12-03 Thread Dev Null
Hello, How to debug the running kernel module on any production server? In general, what are the debugging techniques of any running production server? Thanks, Dev Null On Mon, Nov 29, 2010 at 8:56 PM, Alexandre Courbot wrote: > Hi, > > > Can some one tell, whats the best way to kernel module

Re: Invoking e100_open from userspace

2010-12-03 Thread John Mahoney
On Fri, Dec 3, 2010 at 4:34 AM, Prabhu nath wrote: > Dear All, > >     I am trying to analyse ethernet and rionet driver. Both the > drives are registered with the kernel through >    register_netdev(). >    Each driver has their own functions registered such as e100_open(), > rionet_open(

Re: Invoking e100_open from userspace

2010-12-03 Thread Mulyadi Santosa
Hi... On Fri, Dec 3, 2010 at 16:34, Prabhu nath wrote: > Dear All, > >     I am trying to analyse ethernet and rionet driver. Both the > drives are registered with the kernel through >    register_netdev(). >    Each driver has their own functions registered such as e100_open(), > rionet_

Invoking e100_open from userspace

2010-12-03 Thread Prabhu nath
Dear All, I am trying to analyse ethernet and rionet driver. Both the drives are registered with the kernel through register_netdev(). Each driver has their own functions registered such as e100_open(), rionet_open(). How to trigger this functions from the user space. Appreci