aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/devstat.9
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1999-09-22 20:27:21 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1999-09-22 20:27:21 +0000
commit04a2253821fbbb75176a129c82fb27764ddbde27 (patch)
treea8ffbb3aed512fe70fe95d8cb53332d9574b556a /share/man/man9/devstat.9
parentc8a90c31c90e198b4b8e76cd0022e1adbcb1a547 (diff)
downloadsrc-04a2253821fbbb75176a129c82fb27764ddbde27.tar.gz
src-04a2253821fbbb75176a129c82fb27764ddbde27.zip
Document the new free/erase transaction type.
Reminded about by: ken
Notes
Notes: svn path=/head/; revision=51560
Diffstat (limited to 'share/man/man9/devstat.9')
-rw-r--r--share/man/man9/devstat.97
1 files changed, 6 insertions, 1 deletions
diff --git a/share/man/man9/devstat.9 b/share/man/man9/devstat.9
index a0a9dbc1ddbd..c205c46d54fa 100644
--- a/share/man/man9/devstat.9
+++ b/share/man/man9/devstat.9
@@ -190,10 +190,14 @@ eliminate the counter wrap that would come very quickly on some systems if
32 bit integers were used.
.It bytes_read
This is the number of bytes that have been read from the device.
+.It bytes_freed
+This is the number of bytes that have been freed/erased on the device.
.It num_reads
This is the number of reads from the device.
.It num_writes
This is the number of writes to the device.
+.It num_frees
+This is the number of free/erase operations on the device.
.It num_other
This is the number of transactions to the device which are neither reads or
writes. For instance,
@@ -337,7 +341,8 @@ The transaction types are as follows:
typedef enum {
DEVSTAT_NO_DATA = 0x00,
DEVSTAT_READ = 0x01,
- DEVSTAT_WRITE = 0x02
+ DEVSTAT_WRITE = 0x02,
+ DEVSTAT_FREE = 0x03
} devstat_trans_flags;
.Ed
.Pp