about summary refs log tree commit homepage
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README15
1 files changed, 15 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..3e73b72
--- /dev/null
+++ b/README
@@ -0,0 +1,15 @@
+command-line utils for viewing/managing the Linux page cache
+
+pcu-mincore - shows the pages in the page cache for given files
+
+        pcu-mincore <files>
+
+
+pcu-fadvise - runs posix_fadvise(2) on a given file
+
+        pcu-fadvise [-a advice] [-o offset] [-l length] <files>
+
+        advice can be one of:
+          normal, sequential, random, noreuse, willneed, dontneed
+
+See posix_fadvise(2) and mincore(2) manpages for more details.