Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Nov 2010 15:12:10 +0000 (UTC)
From:      Ivan Voras <ivoras@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r215425 - head/usr.sbin/iostat
Message-ID:  <201011171512.oAHFCAg5095095@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 ");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011171512.oAHFCAg5095095>