summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2006-06-13 02:11:27 +0000
committerdlg <dlg@openbsd.org>2006-06-13 02:11:27 +0000
commit140bdb49b685f7df052e1d73345a19962442f990 (patch)
treebc467aee8650ef46e9bd84e420b398d1caf8dafb
parentwe sometimes bundle chunks that the ioc will write to in the request space (diff)
downloadwireguard-openbsd-140bdb49b685f7df052e1d73345a19962442f990.tar.xz
wireguard-openbsd-140bdb49b685f7df052e1d73345a19962442f990.zip
fix a pasto in a comment: wxfers are for writes, not reads.
found by deanna
-rw-r--r--usr.bin/vmstat/dkstats.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vmstat/dkstats.h b/usr.bin/vmstat/dkstats.h
index 62bad32d7f8..351e0b2ada4 100644
--- a/usr.bin/vmstat/dkstats.h
+++ b/usr.bin/vmstat/dkstats.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dkstats.h,v 1.9 2004/02/15 02:45:47 tedu Exp $ */
+/* $OpenBSD: dkstats.h,v 1.10 2006/06/13 02:11:27 dlg Exp $ */
/* $NetBSD: dkstats.h,v 1.1 1996/05/10 23:19:28 thorpej Exp $ */
/*
@@ -42,7 +42,7 @@ struct _disk {
int *dk_select; /* Display stats for selected disks. */
char **dk_name; /* Disk names (sd0, wd1, etc). */
u_int64_t *dk_rxfer; /* # of read transfers. */
- u_int64_t *dk_wxfer; /* # of read transfers. */
+ u_int64_t *dk_wxfer; /* # of write transfers. */
u_int64_t *dk_seek; /* # of seeks (currently unused). */
u_int64_t *dk_rbytes; /* # of bytes read. */
u_int64_t *dk_wbytes; /* # of bytes written. */