Results 1 to 2 of 2
How to access the user space variable in kernel space, I need to do this because if any Driver fails in module initialization i will write the status in this ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 04-15-2009 #1Just Joined!
- Join Date
- Mar 2009
- Posts
- 5
How to access the User Space Variable in Kernel
How to access the user space variable in kernel space, I need to do this because if any Driver fails in module initialization i will write the status in this user space variable. So whenever i read this variable in user space, then it should have hardware's Driver Module Status(Success or Failure)
- 04-15-2009 #2
You can return a value when the module in initialized...
int init_module()
{
return success of failure;
}Make mine Arch Linux


Reply With Quote
