summaryrefslogtreecommitdiffstats
path: root/usr.bin/ctlstat
diff options
context:
space:
mode:
authorsjg <sjg@FreeBSD.org>2015-05-27 01:19:58 +0000
committersjg <sjg@FreeBSD.org>2015-05-27 01:19:58 +0000
commit65145fa4c81da358fcbc3b650156dab705dfa34e (patch)
tree55c065b6730aaac2afb6c29933ee6ec5fa4c4249 /usr.bin/ctlstat
parent60ff4eb0dff94a04d75d0d52a3957aaaf5f8c693 (diff)
parente6b664c390af88d4a87208bc042ce503da664c3b (diff)
downloadFreeBSD-src-65145fa4c81da358fcbc3b650156dab705dfa34e.zip
FreeBSD-src-65145fa4c81da358fcbc3b650156dab705dfa34e.tar.gz
Merge sync of head
Diffstat (limited to 'usr.bin/ctlstat')
-rw-r--r--usr.bin/ctlstat/ctlstat.85
-rw-r--r--usr.bin/ctlstat/ctlstat.c7
2 files changed, 7 insertions, 5 deletions
diff --git a/usr.bin/ctlstat/ctlstat.8 b/usr.bin/ctlstat/ctlstat.8
index 22da2bf..500ffb0 100644
--- a/usr.bin/ctlstat/ctlstat.8
+++ b/usr.bin/ctlstat/ctlstat.8
@@ -34,7 +34,7 @@
.\" $Id: //depot/users/kenm/FreeBSD-test2/usr.bin/ctlstat/ctlstat.8#2 $
.\" $FreeBSD$
.\"
-.Dd March 6, 2013
+.Dd May 22, 2015
.Dt CTLSTAT 8
.Os
.Sh NAME
@@ -69,7 +69,7 @@ and a combined total column that also includes non I/O operations.
.It Fl c Ar count
Display statistics this many times.
.It Fl C
-Disable display of CPU statistics.
+Disable CPU statistics display.
.It Fl d
Display DMA operation time (latency) instead of overall I/O time (latency).
.It Fl D
@@ -117,6 +117,7 @@ every 10 seconds.
.Xr xpt 4 ,
.Xr camcontrol 8 ,
.Xr ctladm 8 ,
+.Xr ctld 8 ,
.Xr iostat 8
.Sh AUTHORS
.An Ken Merry Aq Mt ken@FreeBSD.org
diff --git a/usr.bin/ctlstat/ctlstat.c b/usr.bin/ctlstat/ctlstat.c
index e04aa54..3bfb248 100644
--- a/usr.bin/ctlstat/ctlstat.c
+++ b/usr.bin/ctlstat/ctlstat.c
@@ -449,7 +449,7 @@ ctlstat_standard(struct ctlstat_context *ctx) {
(F_LUNVAL(ctx) != 0) ? " " : "",
(F_LUNVAL(ctx) != 0) ? " " : "",
(F_LUNVAL(ctx) != 0) ? " " : "",
- (F_CPU(ctx) == 0) ? " CPU" : "");
+ (F_CPU(ctx)) ? " CPU" : "");
hdr_devs = 3;
} else {
if (F_CPU(ctx))
@@ -468,8 +468,9 @@ ctlstat_standard(struct ctlstat_context *ctx) {
if (bit_test(ctx->lun_mask, lun) == 0)
continue;
- fprintf(stdout, "%15.6s%d ",
- "lun", lun);
+ fprintf(stdout, "%15.6s%d %s",
+ "lun", lun,
+ (F_LUNVAL(ctx) != 0) ? " " : "");
hdr_devs++;
}
fprintf(stdout, "\n");
OpenPOWER on IntegriCloud