From e098f50ba37babe1c98ebddc80331ce9fe68b5bb Mon Sep 17 00:00:00 2001 From: tb Date: Thu, 4 Jun 2026 09:29:47 +0000 Subject: [PATCH] systat: prepare userland for upcoming buffer cache work ok deraadt --- usr.bin/systat/iostat.c | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/usr.bin/systat/iostat.c b/usr.bin/systat/iostat.c index bdb316e7072..163e50ee933 100644 --- a/usr.bin/systat/iostat.c +++ b/usr.bin/systat/iostat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iostat.c,v 1.50 2021/08/14 14:22:26 millert Exp $ */ +/* $OpenBSD: iostat.c,v 1.51 2026/06/04 09:29:47 tb Exp $ */ /* $NetBSD: iostat.c,v 1.5 1996/05/10 23:16:35 thorpej Exp $ */ /* @@ -254,10 +254,6 @@ showbcache(void) print_fld_ssize(FLD_IO_SVAL, bccur.numbufpages); end_line(); - print_fld_str(FLD_IO_SSTR, "dma pages"); - print_fld_ssize(FLD_IO_SVAL, bccur.dmapages); - end_line(); - print_fld_str(FLD_IO_SSTR, "dirty pages"); print_fld_ssize(FLD_IO_SVAL, bccur.numdirtypages); end_line(); @@ -289,16 +285,4 @@ showbcache(void) 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(); }