hi tech@,
new cpu state, CP_SPIN, was added,
https://marc.info/?l=openbsd-cvs&m=152630109526317&w=2
but there is no column for it in the header of iostat,
$ iostat
tty sd0 cpu
tin tout KB/t t/s MB/s us ni sy in id
0 1 11.47 3 0.04 0 0 0 0 0100
this patch adds "sp" for CP_SPIN.
--
FUKAUMI Naoki
Index: usr.sbin/iostat/iostat.c
===================================================================
RCS file: /cvs/src/usr.sbin/iostat/iostat.c,v
retrieving revision 1.40
diff -u -p -u -p -r1.40 iostat.c
--- usr.sbin/iostat/iostat.c 10 Feb 2018 19:49:50 -0000 1.40
+++ usr.sbin/iostat/iostat.c 4 Sep 2018 04:19:14 -0000
@@ -229,7 +229,7 @@ header(void)
printf(" %16.16s ", cur.dk_name[i]);
if (ISSET(todo, SHOW_CPU))
- printf(" cpu");
+ printf(" cpu");
printf("\n");
/* Sub-Headers. */
@@ -254,7 +254,7 @@ header(void)
printf(" KB xfr time ");
if (ISSET(todo, SHOW_CPU))
- printf(" us ni sy in id");
+ printf(" us ni sy sp in id");
printf("\n");
}