=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/systat/iostat.c,v retrieving revision 1.46 retrieving revision 1.47 diff -c -r1.46 -r1.47 *** src/usr.bin/systat/iostat.c 2017/04/02 00:27:44 1.46 --- src/usr.bin/systat/iostat.c 2017/04/16 14:24:03 1.47 *************** *** 1,4 **** ! /* $OpenBSD: iostat.c,v 1.46 2017/04/02 00:27:44 beck Exp $ */ /* $NetBSD: iostat.c,v 1.5 1996/05/10 23:16:35 thorpej Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: iostat.c,v 1.47 2017/04/16 14:24:03 beck Exp $ */ /* $NetBSD: iostat.c,v 1.5 1996/05/10 23:16:35 thorpej Exp $ */ /* *************** *** 256,260 **** --- 256,272 ---- print_fld_str(FLD_IO_SSTR, "cache hits"); print_fld_ssize(FLD_IO_SVAL, bccur.cachehits - bclast.cachehits); + end_line(); + + print_fld_str(FLD_IO_SSTR, "high flips"); + print_fld_ssize(FLD_IO_SVAL, bccur.highflips - bclast.highflips); + end_line(); + + print_fld_str(FLD_IO_SSTR, "high flops"); + print_fld_ssize(FLD_IO_SVAL, bccur.highflops - bclast.highflops); + end_line(); + + print_fld_str(FLD_IO_SSTR, "dma flips"); + print_fld_ssize(FLD_IO_SVAL, bccur.dmaflips - bclast.dmaflips); end_line(); }