kernel module question

2006-07-04 Thread Michael Sternberg
Hi, I'm writing kernel module for 2.6 linux. The purpose is to intercept all writes to disk devices and to notify user mode application about sector/length of write. I want to change function pointers of request_fn and make_request_fn to my own routines. The question is what is a

Re: kernel module question

2006-07-04 Thread Gilad Ben-Yossef
Michael Sternberg wrote: Hi, I'm writing kernel module for 2.6 linux. The purpose is to intercept all writes to disk devices and to notify user mode application about sector/length of write. I want to change function pointers of request_fn and make_request_fn to my own routines. Sounds