summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.examples/memory/pfaults.meta
diff options
context:
space:
mode:
authorWilliam Cohen <wcohen@redhat.com>2009-02-12 15:58:24 -0500
committerWilliam Cohen <wcohen@redhat.com>2009-02-12 16:00:20 -0500
commit413996e0c3b55047e12272678627f7833228d892 (patch)
treebbf169e936cc2e9d4b48f34f9609fa40ff3df1bc /testsuite/systemtap.examples/memory/pfaults.meta
parent8df79eb6046f2fa2e1aed736b2adac4eaaf3a2f5 (diff)
downloadsystemtap-steved-413996e0c3b55047e12272678627f7833228d892.tar.gz
systemtap-steved-413996e0c3b55047e12272678627f7833228d892.tar.xz
systemtap-steved-413996e0c3b55047e12272678627f7833228d892.zip
Function to determine page fault type and have pfaults.stp exercise it.
Diffstat (limited to 'testsuite/systemtap.examples/memory/pfaults.meta')
-rw-r--r--testsuite/systemtap.examples/memory/pfaults.meta13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/systemtap.examples/memory/pfaults.meta b/testsuite/systemtap.examples/memory/pfaults.meta
new file mode 100644
index 00000000..149d83fa
--- /dev/null
+++ b/testsuite/systemtap.examples/memory/pfaults.meta
@@ -0,0 +1,13 @@
+title: Generate Log of Major and Minor Page Faults
+name: pfaults.stp
+version: 1.0
+author: anonymous
+keywords: memory
+subsystem: memory
+status: production
+exit: user-controlled
+output: sorted-list
+scope: system-wide
+description: The pfaults.stp script generates a simple log for each major and minor page fault that occurs on the system. Each line contains a timestamp (in microseconds) when the page fault servicing was completed, the pid of the process, the address of the page fault, the type of access (read or write), the type of fault (major or minor), and the elapsed time for page fault. This log can be examined to determine where the page faults are occuring.
+test_check: stap -p4 pfaults.stp
+test_installcheck: stap pfaults.stp -c "sleep 1"