The HyperNews Linux KHG Discussion Pages

Question: getting to the kernel's memory

Forum: The Linux Kernel Hackers' Guide
Re: Question writing/accessing modules (Jones MB)
Re: Feedback Use a device driver and read()/write()/ioctl() (Michael K. Johnson)
Keywords: module memory
Date: Fri, 03 Oct 1997 16:11:37 GMT
From: Jones MB <jonesmb@ziplink.net>

I have now been able to open and read/write to the module via a user level app. The point of the user app/module combination was to allow some variables to be changed in the kernel. These are variables which are created and malloc'ed when the module is loaded, so till the module comes up they do not exist. Now the part of the kernel that will use these variables will not compile as at compile time it does not know of the variables, so compiling fails. Is there a way to get around this?

JonesMB