about summary refs log tree commit homepage
path: root/README
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-10-24 18:41:26 -0700
committerEric Wong <normalperson@yhbt.net>2008-10-24 18:41:26 -0700
commite69018abd4d720324992d4fe276da8405182c108 (patch)
tree5cb36cbf7fd79a79a00fcf842290e3c9b02d47b4 /README
downloadpcu-e69018abd4d720324992d4fe276da8405182c108.tar.gz
initial v0.1.0
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.