svn commit: r215425 - head/usr.sbin/iostat
Ivan Voras
ivoras at FreeBSD.org
Wed Nov 17 15:12:10 UTC 2010
Author: ivoras
Date: Wed Nov 17 15:12:10 2010
New Revision: 215425
URL: http://svn.freebsd.org/changeset/base/215425
Log:
Change "wait" banner to "qlen" to be more indicative of its purpose and to
be more inline with what gstat uses.
Reviewed by: gnn
Silence from: phk, keramida
Modified:
head/usr.sbin/iostat/iostat.8
head/usr.sbin/iostat/iostat.c
Modified: head/usr.sbin/iostat/iostat.8
==============================================================================
--- head/usr.sbin/iostat/iostat.8 Wed Nov 17 13:52:09 2010 (r215424)
+++ head/usr.sbin/iostat/iostat.8 Wed Nov 17 15:12:10 2010 (r215425)
@@ -348,7 +348,7 @@ write operations per second
kilobytes read per second
.It kw/s
kilobytes write per second
-.It wait
+.It qlen
transactions queue length
.It svc_t
average duration of transactions, in milliseconds
Modified: head/usr.sbin/iostat/iostat.c
==============================================================================
--- head/usr.sbin/iostat/iostat.c Wed Nov 17 13:52:09 2010 (r215424)
+++ head/usr.sbin/iostat/iostat.c Wed Nov 17 15:12:10 2010 (r215425)
@@ -750,11 +750,11 @@ devstats(int perf_select, long double et
printf("\n");
if (Iflag == 0)
printf(
- "device r/s w/s kr/s kw/s wait svc_t %%b "
+ "device r/s w/s kr/s kw/s qlen svc_t %%b "
);
else
printf(
- "device r/i w/i kr/i kw/i wait svc_t %%b "
+ "device r/i w/i kr/i kw/i qlen svc_t %%b "
);
if (Tflag > 0)
printf("tin tout ");
More information about the svn-src-all
mailing list