Flushing entries in the process page table on Linux

I was wondering if there is any utility / code in Linux (x86-64) that could reset the entries of each table in the table for the given address space of the process (user)?

thanks

+4
source share
1 answer

I think that /proc/pid/pagemap and /proc/pid/maps contain this information, but I don’t know which tool dumped them in a more meaningful format.

You can always write it yourself using the doc document:

http://www.kernel.org/doc/Documentation/vm/pagemap.txt

+6
source

Source: https://habr.com/ru/post/1444985/


All Articles