summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Cohen <wcohen@calfee.devel.redhat.com>2009-11-23 13:30:46 -0500
committerWilliam Cohen <wcohen@calfee.devel.redhat.com>2009-11-23 13:30:46 -0500
commitd58c711f40a92a0013cd62b6e96c4ae1c54fe045 (patch)
tree9f47e6f9990ec60de704a8a60007e3e8774bdb2c
parentfad409cab6527b17dcc15a81505113606b8d4ed4 (diff)
downloadsystemtap-steved-d58c711f40a92a0013cd62b6e96c4ae1c54fe045.tar.gz
systemtap-steved-d58c711f40a92a0013cd62b6e96c4ae1c54fe045.tar.xz
systemtap-steved-d58c711f40a92a0013cd62b6e96c4ae1c54fe045.zip
Correct tapset/ioscheduler.stp so documentation builds.
-rw-r--r--tapset/ioscheduler.stp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tapset/ioscheduler.stp b/tapset/ioscheduler.stp
index ac271f80..7f26cf23 100644
--- a/tapset/ioscheduler.stp
+++ b/tapset/ioscheduler.stp
@@ -145,7 +145,7 @@ probe ioscheduler.elv_completed_request
}
/**
- * probe ioscheduler.elv_add_request.tp : tracepoint based probe to indicate a request is added to the request queue.
+ * probe ioscheduler.elv_add_request.tp - tracepoint based probe to indicate a request is added to the request queue.
* @elevator_name : The type of I/O elevator currently enabled.
* @q : Pointer to request queue.
* @rq : Address of request.
@@ -173,7 +173,7 @@ rq_flags = $rq==0? 0:$rq->cmd_flags
}
/**
- * probe ioscheduler.elv_add_request : probe to indicate request is added to the request queue.
+ * probe ioscheduler.elv_add_request - probe to indicate request is added to the request queue.
* @elevator_name : The type of I/O elevator currently enabled.
* @q : Pointer to request queue.
* @rq : Address of request.
@@ -187,7 +187,7 @@ probe ioscheduler.elv_add_request =
{}
/**
- * probe ioscheduler_trace.elv_completed_request : Fires when a request is
+ * probe ioscheduler_trace.elv_completed_request - Fires when a request is
* completed.
* @elevator_name : The type of I/O elevator currently enabled.
* @rq : Address of request.
@@ -214,7 +214,7 @@ rq_flags = $rq==0? 0:$rq->cmd_flags
}
/**
- * probe ioscheduler_trace.elv_issue_request : Fires when a request is
+ * probe ioscheduler_trace.elv_issue_request - Fires when a request is
* scheduled.
* @elevator_name : The type of I/O elevator currently enabled.
* @rq : Address of request.
@@ -241,7 +241,7 @@ rq_flags = $rq==0? 0:$rq->cmd_flags
}
/**
- * probe ioscheduler_trace.elv_requeue_request : Fires when a request is
+ * probe ioscheduler_trace.elv_requeue_request - Fires when a request is
* put back on the queue, when the hadware cannot accept more requests.
* @elevator_name : The type of I/O elevator currently enabled.
* @rq : Address of request.
@@ -268,7 +268,7 @@ rq_flags = $rq==0? 0:$rq->cmd_flags
}
/**
- * probe ioscheduler_trace.elv_abort_request : Fires when a request is aborted.
+ * probe ioscheduler_trace.elv_abort_request - Fires when a request is aborted.
* @elevator_name : The type of I/O elevator currently enabled.
* @rq : Address of request.
* @rq_flags : Request flags.