diff options
author | ddomingo <ddomingo@redhat.com> | 2009-03-16 14:21:51 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2009-03-16 14:21:51 +1000 |
commit | 2f440553d602cb3e2903803539216739b21b4c42 (patch) | |
tree | bb95d7de178f8e95a181950d0098ed77b6b00457 | |
parent | 00db8e7c02006c1b68fb97b768cbb4a8e08d3a30 (diff) | |
download | systemtap-steved-2f440553d602cb3e2903803539216739b21b4c42.tar.gz systemtap-steved-2f440553d602cb3e2903803539216739b21b4c42.tar.xz systemtap-steved-2f440553d602cb3e2903803539216739b21b4c42.zip |
fixed format of non-grabbable comments (for Tapset Reference Guide), added tapsetdescription for man page generator (in development)
-rw-r--r-- | tapset/scsi.stp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tapset/scsi.stp b/tapset/scsi.stp index 6d332e8b..8ff3dcca 100644 --- a/tapset/scsi.stp +++ b/tapset/scsi.stp @@ -5,7 +5,9 @@ // redistribute it and/or modify it under the terms of the GNU General // Public License (GPL); either version 2, or (at your option) any // later version. - +// <tapsetdescription> +// This family of probe points is used to probe SCSI activities. +// </tapsetdescription> %{ #include <linux/types.h> #include <scsi/scsi_cmnd.h> @@ -21,7 +23,7 @@ * @disk_minor: The minor number of the disk (-1 if no information) * @device_state: The current state of the device. */ -/* FIXME describe the device_state */ +// FIXME describe the device_state probe scsi.ioentry = module("scsi_mod").function("scsi_prep_fn@drivers/scsi/scsi_lib.c")?, kernel.function("scsi_prep_fn@drivers/scsi/scsi_lib.c")? @@ -107,7 +109,7 @@ probe scsi.iodone * the device * @goodbytes: The bytes completed. */ -/* mid-layer processes the completed IO */ +// mid-layer processes the completed IO probe scsi.iocompleted = module("scsi_mod").function("scsi_io_completion@drivers/scsi/scsi_lib.c")?, kernel.function("scsi_io_completion@drivers/scsi/scsi_lib.c")? |