I'm writing a module for a class and am having trouble interception sys_execve()... I've intercepted sys_read(), sys_write(), and sys_open() without any trouble; however, sys_execve() is resulting in an Oops. I'm fairly certain I have the function prototype defined correctly.
Hello, i am dealing with studiing kernel module. As example i am using block device from lwn
http://lwn.net/Articles/58719/
and so far so good, but i am trying to create simple network disk (just for test, ...)
I found this article.