summaryrefslogtreecommitdiffstats
path: root/tapset/memory.stp
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2009-03-17 15:13:23 +1000
committerddomingo <ddomingo@redhat.com>2009-03-17 15:13:23 +1000
commit83b85c2b0be729352bae4ea204d814b377b32fcf (patch)
tree07faccf4fa2e701348c52fe374d3a5b96eb05897 /tapset/memory.stp
parent11f44635b6964dd7a7753da6722fa4750573d0ca (diff)
downloadsystemtap-steved-83b85c2b0be729352bae4ea204d814b377b32fcf.tar.gz
systemtap-steved-83b85c2b0be729352bae4ea204d814b377b32fcf.tar.xz
systemtap-steved-83b85c2b0be729352bae4ea204d814b377b32fcf.zip
minor edits
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).