RE: stop mount/read/write

2009-06-16 Thread vibi sreenivasan
> What about using LD_PRELOAD ? > that can only be used if we are accessing system call via libc. Thanks & Regards vibi sreenivasan > -- > Sudheer > > -- To unsubscribe from this list: send an email with "unsubscribe kernelnewbies" to ecar...@nl.linux.org Please read the FAQ at http://kernelnewbies.org/FAQ

Re: Fwd: how to call function in one module frm another?

2009-06-14 Thread vibi sreenivasan
hi, On Sun, 2009-06-14 at 21:19 -0700, krushnaal pai wrote: > im new to linux > can sumone plzz tell me how to call a function defined in one module > frm another module? use EXPORT_SYMBOL macro in the module you define the function. regards vibi > > > also i have made some changes in the kerne

how to unlock pages that is locked into memory using get_user_pages

2009-05-28 Thread vibi sreenivasan
hi, how to unlock pages that is locked into memory using get_user_pages. regards vibi sreenivasan -- To unsubscribe from this list: send an email with "unsubscribe kernelnewbies" to ecar...@nl.linux.org Please read the FAQ at http://kernelnewbies.org/FAQ

Re: HOW TO- Build modules for embedded platform?

2009-05-27 Thread vibi sreenivasan
/initramfs ? thanks & regards vibi sreenivasan > Regards, > Vipul. > > > On Wed, May 27, 2009 at 9:36 AM, Mulyadi Santosa > wrote: > > On Wed, May 27, 2009 at 11:31 PM, Vipul Jain > wrote: > > Hello All, > > >

Re: Fwd: problem with external module Makefile linux kernel 2.6

2009-05-21 Thread vibi sreenivasan
hi, > [r...@rhel5u3-dl580g4 new]# cat Makefile > > obj-m := dirac.o > > dirac-objs = $(patsubst %.c,%.ko,$(wildcard , *.c)) please try changing this line to dirac-objs = $(patsubst %.c,%.o,$(wildcard , *.c)) regards vibi sreenivasan -- To unsubscribe from this list: sen

Re: Getting input from USB HID foot pedal. Where to get started?

2009-05-18 Thread vibi sreenivasan
hi, >I have a foot pedal that is implemented as a USB HID device, and it what does your /proc/bus/input/devices say ? regards vibi sreenivasan -- To unsubscribe from this list: send an email with "unsubscribe kernelnewbies" to ecar...@nl.linux.org Please read th

Re: /proc/net/dev file

2009-05-18 Thread vibi sreenivasan
-Original Message- From: Mariusz Ziulek To: kernelnewbies@nl.linux.org Subject: Re: /proc/net/dev file Shortly speaking: Which kernel function will be invoked when I run: cat /proc/net/dev ? i think you have to look into linux-2.6/net/core/dev.c (v2.6.30-rc6) thanks & regards