Need to save the page of process (the user part!) from removing to the swap.
I need to do it in the kernel, only. (language C I know)
(Maybe insert hook in shrink_page_list?)
I have IDs of processes, which need to save and threshold amount of physical memory in the system (We fill, while it isn't filled). IDs and threshold write in /proc, /dev or /sys.
How to approach this?
What files to look at?
What tutorials to read?
Maybe there are examples that are somehow are related with this task.
Info: I compilling kernel of Debian Lenny, use Qemu for start it on my Ubuntu.
mlock()syscall: git.kernel.org/?p=linux/kernel/git/torvalds/… - and then figure out how to retrieve another process'mm_structin order to reimplementdo_mlock()on someone else's behalf. The source toptrace()would help there, and/or the procfs code that implements/proc/<PID>/mem. – FrankH. Nov 19 '12 at 13:25do_mlock()/do_mlock_pages()? There's no reference / usage in those anywhere toshrink_page_list(). As said, from kernel code, you can do for any task/process whatdo_mlock()does for thecurrentone. I leave it as exercise to the reader to figure out how to translate a PID totask_struct/mm_struct; yes, this is a comment and not an answer. – FrankH. Nov 20 '12 at 12:54