aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/filesystems/proc.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/Documentation/filesystems/proc.txt b/Documentation/filesystems/proc.txt
index 1c96cb6c7972..ae7f8bb1b7bc 100644
--- a/Documentation/filesystems/proc.txt
+++ b/Documentation/filesystems/proc.txt
@@ -375,6 +375,19 @@ of memory currently marked as referenced or accessed.
375This file is only present if the CONFIG_MMU kernel configuration option is 375This file is only present if the CONFIG_MMU kernel configuration option is
376enabled. 376enabled.
377 377
378The /proc/PID/clear_refs is used to reset the PG_Referenced and ACCESSED/YOUNG
379bits on both physical and virtual pages associated with a process.
380To clear the bits for all the pages associated with the process
381 > echo 1 > /proc/PID/clear_refs
382
383To clear the bits for the anonymous pages associated with the process
384 > echo 2 > /proc/PID/clear_refs
385
386To clear the bits for the file mapped pages associated with the process
387 > echo 3 > /proc/PID/clear_refs
388Any other value written to /proc/PID/clear_refs will have no effect.
389
390
3781.2 Kernel data 3911.2 Kernel data
379--------------- 392---------------
380 393