update to new dkstats.c interface; no changes to how this program works.

pointed out by uwe@ in private email.
This commit is contained in:
mrg 2002-11-02 01:59:24 +00:00
parent a0839650fe
commit c066bc7b3a

View File

@ -1,4 +1,4 @@
/* $NetBSD: rstat_proc.c,v 1.39 2002/01/28 13:10:01 augustss Exp $ */ /* $NetBSD: rstat_proc.c,v 1.40 2002/11/02 01:59:24 mrg Exp $ */
/* /*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@ -35,7 +35,7 @@
static char sccsid[] = "from: @(#)rpc.rstatd.c 1.1 86/09/25 Copyr 1984 Sun Micro"; static char sccsid[] = "from: @(#)rpc.rstatd.c 1.1 86/09/25 Copyr 1984 Sun Micro";
static char sccsid[] = "from: @(#)rstat_proc.c 2.2 88/08/01 4.0 RPCSRC"; static char sccsid[] = "from: @(#)rstat_proc.c 2.2 88/08/01 4.0 RPCSRC";
#else #else
__RCSID("$NetBSD: rstat_proc.c,v 1.39 2002/01/28 13:10:01 augustss Exp $"); __RCSID("$NetBSD: rstat_proc.c,v 1.40 2002/11/02 01:59:24 mrg Exp $");
#endif #endif
#endif #endif
@ -229,7 +229,7 @@ updatestat(int dummy)
dkreadstats(); dkreadstats();
memset(stats_all.s3.dk_xfer, 0, sizeof(stats_all.s3.dk_xfer)); memset(stats_all.s3.dk_xfer, 0, sizeof(stats_all.s3.dk_xfer));
for (i = 0; i < dk_ndrive && i < DK_NDRIVE; i++) for (i = 0; i < dk_ndrive && i < DK_NDRIVE; i++)
stats_all.s3.dk_xfer[i] = cur.dk_xfer[i]; stats_all.s3.dk_xfer[i] = cur.dk_rxfer[i] + cur.dk_wxfer[i];
#ifdef BSD #ifdef BSD
for (i = 0; i < CPUSTATES; i++) for (i = 0; i < CPUSTATES; i++)