summaryrefslogtreecommitdiffstats
path: root/tapset/memory.stp
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-03-17 13:09:49 -0400
committerDave Brolley <brolley@redhat.com>2009-03-17 13:09:49 -0400
commit2855f6351e26f51953af11b17c4499df4d3d3441 (patch)
tree2fa84dd226f944ae29e0dae5e9c192a0f0c0a202 /tapset/memory.stp
parent9b6d8bd0d7a6f80a613b7c609ff1d71ddfed009b (diff)
parent67aada05e69728327de1c7b8aeeaa0193668bed8 (diff)
downloadsystemtap-steved-2855f6351e26f51953af11b17c4499df4d3d3441.tar.gz
systemtap-steved-2855f6351e26f51953af11b17c4499df4d3d3441.tar.xz
systemtap-steved-2855f6351e26f51953af11b17c4499df4d3d3441.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'tapset/memory.stp')
-rw-r--r--tapset/memory.stp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tapset/memory.stp b/tapset/memory.stp
index 9dbe3fba..83875aa4 100644
--- a/tapset/memory.stp
+++ b/tapset/memory.stp
@@ -56,7 +56,7 @@ function vm_fault_contains:long (value:long, test:long)
/**
* probe vm.pagefault - Records that a page fault occurred.
* @address: The address of the faulting memory access; i.e. the address that caused the page fault.
- * @write_access: Indicates whether this was a write or read access; <command>1</command> indicates a write,
+ * @write_access: Indicates whether this was a write or read access; <command>1</command> indicates a write,
* while <command>0</command> indicates a read.
*
* Context: The process which triggered the fault
@@ -113,8 +113,8 @@ function _IS_ZERO_PAGE:long(from:long, vaddr:long) %{ /* pure */
* Context:
* The context is the process attempting the write.
*
- * Fires when a process attempts to write to a shared page.
- * If a copy is necessary, this will be followed by a
+ * Fires when a process attempts to write to a shared page.
+ * If a copy is necessary, this will be followed by a
* <command>vm.write_shared_copy</command>.
*/
probe vm.write_shared = kernel.function("do_wp_page") {
@@ -122,7 +122,7 @@ probe vm.write_shared = kernel.function("do_wp_page") {
}
/**
- * probe vm.write_shared_copy- Page copy for shared page write.
+ * probe vm.write_shared_copy - Page copy for shared page write.
* @address: The address of the shared write.
* @zero: Boolean indicating whether it is a zero page
* (can do a clear instead of a copy).