Home | History | Annotate | Line # | Download | only in systat
vmstat.c revision 1.22
      1  1.22     jwise /*	$NetBSD: vmstat.c,v 1.22 1999/12/20 03:45:03 jwise Exp $	*/
      2   1.2       jtc 
      3   1.1       jtc /*-
      4   1.1       jtc  * Copyright (c) 1983, 1989, 1992, 1993
      5   1.1       jtc  *	The Regents of the University of California.  All rights reserved.
      6   1.1       jtc  *
      7   1.1       jtc  * Redistribution and use in source and binary forms, with or without
      8   1.1       jtc  * modification, are permitted provided that the following conditions
      9   1.1       jtc  * are met:
     10   1.1       jtc  * 1. Redistributions of source code must retain the above copyright
     11   1.1       jtc  *    notice, this list of conditions and the following disclaimer.
     12   1.1       jtc  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       jtc  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       jtc  *    documentation and/or other materials provided with the distribution.
     15   1.1       jtc  * 3. All advertising materials mentioning features or use of this software
     16   1.1       jtc  *    must display the following acknowledgement:
     17   1.1       jtc  *	This product includes software developed by the University of
     18   1.1       jtc  *	California, Berkeley and its contributors.
     19   1.1       jtc  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       jtc  *    may be used to endorse or promote products derived from this software
     21   1.1       jtc  *    without specific prior written permission.
     22   1.1       jtc  *
     23   1.1       jtc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       jtc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       jtc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       jtc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       jtc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       jtc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       jtc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       jtc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       jtc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       jtc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       jtc  * SUCH DAMAGE.
     34   1.1       jtc  */
     35   1.1       jtc 
     36   1.8       mrg #include <sys/cdefs.h>
     37   1.1       jtc #ifndef lint
     38   1.2       jtc #if 0
     39   1.1       jtc static char sccsid[] = "@(#)vmstat.c	8.2 (Berkeley) 1/12/94";
     40   1.2       jtc #endif
     41  1.22     jwise __RCSID("$NetBSD: vmstat.c,v 1.22 1999/12/20 03:45:03 jwise Exp $");
     42   1.1       jtc #endif /* not lint */
     43   1.1       jtc 
     44   1.1       jtc /*
     45   1.1       jtc  * Cursed vmstat -- from Robert Elz.
     46   1.1       jtc  */
     47   1.1       jtc 
     48   1.1       jtc #include <sys/param.h>
     49   1.1       jtc #include <sys/dkstat.h>
     50   1.1       jtc #include <sys/buf.h>
     51   1.1       jtc #include <sys/stat.h>
     52   1.1       jtc #include <sys/time.h>
     53   1.1       jtc #include <sys/user.h>
     54   1.1       jtc #include <sys/proc.h>
     55   1.1       jtc #include <sys/namei.h>
     56   1.1       jtc #include <sys/sysctl.h>
     57  1.19       mrg 
     58   1.1       jtc #include <vm/vm.h>
     59   1.1       jtc 
     60  1.11       mrg #include <uvm/uvm_extern.h>
     61  1.11       mrg 
     62   1.3   mycroft #include <ctype.h>
     63   1.3   mycroft #include <err.h>
     64   1.1       jtc #include <nlist.h>
     65   1.1       jtc #include <paths.h>
     66   1.3   mycroft #include <signal.h>
     67   1.3   mycroft #include <stdlib.h>
     68   1.1       jtc #include <string.h>
     69   1.3   mycroft #include <utmp.h>
     70   1.1       jtc #include <unistd.h>
     71   1.3   mycroft 
     72   1.1       jtc #include "systat.h"
     73   1.1       jtc #include "extern.h"
     74   1.1       jtc 
     75   1.1       jtc static struct Info {
     76   1.1       jtc 	long	time[CPUSTATES];
     77  1.11       mrg 	struct	uvmexp uvmexp;
     78   1.1       jtc 	struct	vmtotal Total;
     79   1.1       jtc 	struct	nchstats nchstats;
     80   1.1       jtc 	long	nchcount;
     81   1.1       jtc 	long	*intrcnt;
     82   1.1       jtc } s, s1, s2, z;
     83   1.1       jtc 
     84   1.5   thorpej #include "dkstats.h"
     85   1.5   thorpej extern struct _disk	cur;
     86   1.5   thorpej 
     87   1.5   thorpej 
     88   1.1       jtc #define	cnt s.Cnt
     89   1.1       jtc #define oldcnt s1.Cnt
     90   1.1       jtc #define	total s.Total
     91   1.1       jtc #define	nchtotal s.nchstats
     92   1.1       jtc #define	oldnchtotal s1.nchstats
     93   1.1       jtc 
     94   1.1       jtc static	enum state { BOOT, TIME, RUN } state = TIME;
     95   1.1       jtc 
     96   1.1       jtc static void allocinfo __P((struct Info *));
     97   1.1       jtc static void copyinfo __P((struct Info *, struct Info *));
     98   1.1       jtc static float cputime __P((int));
     99   1.1       jtc static void dinfo __P((int, int));
    100   1.1       jtc static void getinfo __P((struct Info *, enum state));
    101   1.1       jtc static void putint __P((int, int, int, int));
    102   1.1       jtc static void putfloat __P((double, int, int, int, int, int));
    103   1.1       jtc static int ucount __P((void));
    104   1.1       jtc 
    105   1.1       jtc static	int ut;
    106   1.1       jtc static	char buf[26];
    107   1.1       jtc static	time_t t;
    108   1.1       jtc static	double etime;
    109   1.1       jtc static	float hertz;
    110   1.1       jtc static	int nintr;
    111   1.1       jtc static	long *intrloc;
    112   1.1       jtc static	char **intrname;
    113   1.1       jtc static	int nextintsrow;
    114   1.1       jtc 
    115   1.1       jtc struct	utmp utmp;
    116   1.1       jtc 
    117   1.1       jtc WINDOW *
    118   1.1       jtc openkre()
    119   1.1       jtc {
    120   1.1       jtc 
    121   1.1       jtc 	ut = open(_PATH_UTMP, O_RDONLY);
    122   1.1       jtc 	if (ut < 0)
    123   1.1       jtc 		error("No utmp");
    124   1.1       jtc 	return (stdscr);
    125   1.1       jtc }
    126   1.1       jtc 
    127   1.1       jtc void
    128   1.1       jtc closekre(w)
    129   1.1       jtc 	WINDOW *w;
    130   1.1       jtc {
    131   1.1       jtc 
    132   1.1       jtc 	(void) close(ut);
    133   1.1       jtc 	if (w == NULL)
    134   1.1       jtc 		return;
    135   1.1       jtc 	wclear(w);
    136   1.1       jtc 	wrefresh(w);
    137   1.1       jtc }
    138   1.1       jtc 
    139   1.1       jtc 
    140   1.1       jtc static struct nlist namelist[] = {
    141   1.1       jtc #define X_CPTIME	0
    142   1.1       jtc 	{ "_cp_time" },
    143  1.11       mrg #define X_TOTAL		1
    144   1.1       jtc 	{ "_total" },
    145  1.11       mrg #define	X_NCHSTATS	2
    146   1.1       jtc 	{ "_nchstats" },
    147  1.11       mrg #define	X_INTRNAMES	3
    148   1.1       jtc 	{ "_intrnames" },
    149  1.11       mrg #define	X_EINTRNAMES	4
    150   1.1       jtc 	{ "_eintrnames" },
    151  1.11       mrg #define	X_INTRCNT	5
    152   1.1       jtc 	{ "_intrcnt" },
    153  1.11       mrg #define	X_EINTRCNT	6
    154   1.1       jtc 	{ "_eintrcnt" },
    155   1.1       jtc 	{ "" },
    156   1.1       jtc };
    157   1.1       jtc 
    158   1.1       jtc /*
    159   1.1       jtc  * These constants define where the major pieces are laid out
    160   1.1       jtc  */
    161   1.1       jtc #define STATROW		 0	/* uses 1 row and 68 cols */
    162   1.1       jtc #define STATCOL		 2
    163   1.1       jtc #define MEMROW		 2	/* uses 4 rows and 31 cols */
    164   1.1       jtc #define MEMCOL		 0
    165   1.1       jtc #define PAGEROW		 2	/* uses 4 rows and 26 cols */
    166   1.1       jtc #define PAGECOL		36
    167   1.1       jtc #define INTSROW		 2	/* uses all rows to bottom and 17 cols */
    168   1.1       jtc #define INTSCOL		63
    169   1.1       jtc #define PROCSROW	 7	/* uses 2 rows and 20 cols */
    170   1.1       jtc #define PROCSCOL	 0
    171   1.1       jtc #define GENSTATROW	 7	/* uses 2 rows and 30 cols */
    172   1.1       jtc #define GENSTATCOL	20
    173   1.1       jtc #define VMSTATROW	 7	/* uses 17 rows and 12 cols */
    174   1.1       jtc #define VMSTATCOL	48
    175   1.1       jtc #define GRAPHROW	10	/* uses 3 rows and 51 cols */
    176   1.1       jtc #define GRAPHCOL	 0
    177   1.1       jtc #define NAMEIROW	14	/* uses 3 rows and 38 cols */
    178   1.1       jtc #define NAMEICOL	 0
    179   1.1       jtc #define DISKROW		18	/* uses 5 rows and 50 cols (for 9 drives) */
    180   1.1       jtc #define DISKCOL		 0
    181   1.1       jtc 
    182   1.1       jtc #define	DRIVESPACE	 9	/* max # for space */
    183   1.1       jtc 
    184   1.1       jtc #if DK_NDRIVE > DRIVESPACE
    185   1.1       jtc #define	MAXDRIVES	DRIVESPACE	 /* max # to display */
    186   1.1       jtc #else
    187   1.1       jtc #define	MAXDRIVES	DK_NDRIVE	 /* max # to display */
    188   1.1       jtc #endif
    189   1.1       jtc 
    190   1.1       jtc int
    191   1.1       jtc initkre()
    192   1.1       jtc {
    193   1.1       jtc 	char *intrnamebuf, *cp;
    194   1.1       jtc 	int i;
    195   1.1       jtc 	static int once = 0;
    196  1.15  drochner 	extern gid_t egid;
    197   1.1       jtc 
    198   1.1       jtc 	if (namelist[0].n_type == 0) {
    199   1.1       jtc 		if (kvm_nlist(kd, namelist)) {
    200   1.1       jtc 			nlisterr(namelist);
    201   1.1       jtc 			return(0);
    202   1.1       jtc 		}
    203   1.1       jtc 		if (namelist[0].n_type == 0) {
    204   1.1       jtc 			error("No namelist");
    205   1.1       jtc 			return(0);
    206   1.1       jtc 		}
    207   1.1       jtc 	}
    208   1.1       jtc 	hertz = stathz ? stathz : hz;
    209  1.15  drochner 	if (! dkinit(1, egid))
    210   1.1       jtc 		return(0);
    211   1.1       jtc 	if (dk_ndrive && !once) {
    212   1.1       jtc #define	allocate(e, t) \
    213   1.7    scottr 	s./**/e = (t *)calloc(dk_ndrive, sizeof (t)); \
    214   1.7    scottr 	s1./**/e = (t *)calloc(dk_ndrive, sizeof (t)); \
    215   1.7    scottr 	s2./**/e = (t *)calloc(dk_ndrive, sizeof (t)); \
    216   1.7    scottr 	z./**/e = (t *)calloc(dk_ndrive, sizeof (t));
    217   1.1       jtc 		once = 1;
    218   1.1       jtc #undef allocate
    219   1.1       jtc 	}
    220   1.1       jtc 	if (nintr == 0) {
    221   1.1       jtc 		nintr = (namelist[X_EINTRCNT].n_value -
    222   1.1       jtc 			namelist[X_INTRCNT].n_value) / sizeof (long);
    223   1.1       jtc 		intrloc = calloc(nintr, sizeof (long));
    224   1.1       jtc 		intrname = calloc(nintr, sizeof (long));
    225   1.1       jtc 		intrnamebuf = malloc(namelist[X_EINTRNAMES].n_value -
    226   1.1       jtc 			namelist[X_INTRNAMES].n_value);
    227   1.1       jtc 		if (intrnamebuf == 0 || intrname == 0 || intrloc == 0) {
    228   1.1       jtc 			error("Out of memory\n");
    229   1.1       jtc 			if (intrnamebuf)
    230   1.1       jtc 				free(intrnamebuf);
    231   1.1       jtc 			if (intrname)
    232   1.1       jtc 				free(intrname);
    233   1.1       jtc 			if (intrloc)
    234   1.1       jtc 				free(intrloc);
    235   1.1       jtc 			nintr = 0;
    236   1.1       jtc 			return(0);
    237   1.1       jtc 		}
    238   1.1       jtc 		NREAD(X_INTRNAMES, intrnamebuf, NVAL(X_EINTRNAMES) -
    239   1.1       jtc 			NVAL(X_INTRNAMES));
    240   1.1       jtc 		for (cp = intrnamebuf, i = 0; i < nintr; i++) {
    241   1.1       jtc 			intrname[i] = cp;
    242   1.1       jtc 			cp += strlen(cp) + 1;
    243   1.1       jtc 		}
    244   1.1       jtc 		nextintsrow = INTSROW + 2;
    245   1.1       jtc 		allocinfo(&s);
    246   1.1       jtc 		allocinfo(&s1);
    247   1.1       jtc 		allocinfo(&s2);
    248   1.1       jtc 		allocinfo(&z);
    249   1.1       jtc 	}
    250   1.1       jtc 	getinfo(&s2, RUN);
    251   1.1       jtc 	copyinfo(&s2, &s1);
    252   1.1       jtc 	return(1);
    253   1.1       jtc }
    254   1.1       jtc 
    255   1.1       jtc void
    256   1.1       jtc fetchkre()
    257   1.1       jtc {
    258   1.1       jtc 	time_t now;
    259   1.1       jtc 
    260   1.1       jtc 	time(&now);
    261   1.1       jtc 	strcpy(buf, ctime(&now));
    262  1.18      marc 	buf[19] = '\0';
    263   1.1       jtc 	getinfo(&s, state);
    264   1.1       jtc }
    265   1.1       jtc 
    266   1.1       jtc void
    267   1.1       jtc labelkre()
    268   1.1       jtc {
    269  1.10     lukem 	int i, j;
    270   1.1       jtc 
    271   1.1       jtc 	clear();
    272   1.1       jtc 	mvprintw(STATROW, STATCOL + 4, "users    Load");
    273  1.13       mrg 	mvprintw(MEMROW, MEMCOL,     "          memory totals (in KB)");
    274  1.13       mrg 	mvprintw(MEMROW + 1, MEMCOL, "         real   virtual    free");
    275  1.13       mrg 	mvprintw(MEMROW + 2, MEMCOL, "Active");
    276  1.13       mrg 	mvprintw(MEMROW + 3, MEMCOL, "All");
    277  1.13       mrg 
    278  1.13       mrg 	mvprintw(PAGEROW, PAGECOL, "        PAGING   SWAPPING ");
    279  1.13       mrg 	mvprintw(PAGEROW + 1, PAGECOL, "        in  out   in  out ");
    280  1.13       mrg 	mvprintw(PAGEROW + 2, PAGECOL, "ops");
    281  1.13       mrg 	mvprintw(PAGEROW + 3, PAGECOL, "pages");
    282   1.1       jtc 
    283   1.1       jtc 	mvprintw(INTSROW, INTSCOL + 3, " Interrupts");
    284   1.1       jtc 	mvprintw(INTSROW + 1, INTSCOL + 9, "total");
    285   1.1       jtc 
    286  1.12       mrg 	mvprintw(VMSTATROW + 0, VMSTATCOL + 10, "forks");
    287  1.12       mrg 	mvprintw(VMSTATROW + 1, VMSTATCOL + 10, "fkppw");
    288  1.12       mrg 	mvprintw(VMSTATROW + 2, VMSTATCOL + 10, "fksvm");
    289  1.12       mrg 	mvprintw(VMSTATROW + 3, VMSTATCOL + 10, "pwait");
    290  1.12       mrg 	mvprintw(VMSTATROW + 4, VMSTATCOL + 10, "relck");
    291  1.12       mrg 	mvprintw(VMSTATROW + 5, VMSTATCOL + 10, "rlkok");
    292  1.12       mrg 	mvprintw(VMSTATROW + 6, VMSTATCOL + 10, "noram");
    293  1.12       mrg 	mvprintw(VMSTATROW + 7, VMSTATCOL + 10, "ndcpy");
    294  1.12       mrg 	mvprintw(VMSTATROW + 8, VMSTATCOL + 10, "fltcp");
    295  1.12       mrg 	mvprintw(VMSTATROW + 9, VMSTATCOL + 10, "zfod");
    296  1.12       mrg 	mvprintw(VMSTATROW + 10, VMSTATCOL + 10, "cow");
    297  1.12       mrg 	mvprintw(VMSTATROW + 11, VMSTATCOL + 10, "fmin");
    298  1.12       mrg 	mvprintw(VMSTATROW + 12, VMSTATCOL + 10, "ftarg");
    299  1.12       mrg 	mvprintw(VMSTATROW + 13, VMSTATCOL + 10, "itarg");
    300  1.12       mrg 	mvprintw(VMSTATROW + 14, VMSTATCOL + 10, "wired");
    301  1.12       mrg 	mvprintw(VMSTATROW + 15, VMSTATCOL + 10, "pdfre");
    302  1.12       mrg 	if (LINES - 1 > VMSTATROW + 16)
    303  1.12       mrg 		mvprintw(VMSTATROW + 16, VMSTATCOL + 10, "pdscn");
    304   1.1       jtc 
    305   1.1       jtc 	mvprintw(GENSTATROW, GENSTATCOL, "  Csw  Trp  Sys  Int  Sof  Flt");
    306   1.1       jtc 
    307   1.1       jtc 	mvprintw(GRAPHROW, GRAPHCOL,
    308   1.1       jtc 		"    . %% Sys    . %% User    . %% Nice    . %% Idle");
    309  1.13       mrg 	mvprintw(PROCSROW, PROCSCOL, "Proc:r  d  s  w");
    310   1.1       jtc 	mvprintw(GRAPHROW + 1, GRAPHCOL,
    311   1.1       jtc 		"|    |    |    |    |    |    |    |    |    |    |");
    312   1.1       jtc 
    313   1.1       jtc 	mvprintw(NAMEIROW, NAMEICOL, "Namei         Sys-cache     Proc-cache");
    314   1.1       jtc 	mvprintw(NAMEIROW + 1, NAMEICOL,
    315   1.1       jtc 		"    Calls     hits    %%     hits     %%");
    316   1.1       jtc 	mvprintw(DISKROW, DISKCOL, "Discs");
    317   1.1       jtc 	mvprintw(DISKROW + 1, DISKCOL, "seeks");
    318   1.1       jtc 	mvprintw(DISKROW + 2, DISKCOL, "xfers");
    319   1.5   thorpej 	mvprintw(DISKROW + 3, DISKCOL, "Kbyte");
    320   1.5   thorpej 	mvprintw(DISKROW + 4, DISKCOL, "  sec");
    321   1.1       jtc 	j = 0;
    322   1.1       jtc 	for (i = 0; i < dk_ndrive && j < MAXDRIVES; i++)
    323   1.1       jtc 		if (dk_select[i]) {
    324   1.1       jtc 			mvprintw(DISKROW, DISKCOL + 5 + 5 * j,
    325  1.20     soren 				" %4.4s", dr_name[j]);
    326   1.1       jtc 			j++;
    327   1.1       jtc 		}
    328   1.1       jtc 	for (i = 0; i < nintr; i++) {
    329   1.1       jtc 		if (intrloc[i] == 0)
    330   1.1       jtc 			continue;
    331   1.1       jtc 		mvprintw(intrloc[i], INTSCOL + 9, "%-8.8s", intrname[i]);
    332   1.1       jtc 	}
    333   1.1       jtc }
    334   1.1       jtc 
    335   1.1       jtc #define X(fld)	{t=s.fld[i]; s.fld[i]-=s1.fld[i]; if(state==TIME) s1.fld[i]=t;}
    336   1.1       jtc #define Y(fld)	{t = s.fld; s.fld -= s1.fld; if(state == TIME) s1.fld = t;}
    337   1.1       jtc #define Z(fld)	{t = s.nchstats.fld; s.nchstats.fld -= s1.nchstats.fld; \
    338   1.1       jtc 	if(state == TIME) s1.nchstats.fld = t;}
    339  1.16   mycroft #define PUTRATE(fld, l, c, w) {Y(fld); putint((int)((float)s.fld/etime + 0.5), l, c, w);}
    340   1.1       jtc #define MAXFAIL 5
    341   1.1       jtc 
    342   1.1       jtc static	char cpuchar[CPUSTATES] = { '=' , '>', '-', ' ' };
    343   1.1       jtc static	char cpuorder[CPUSTATES] = { CP_SYS, CP_USER, CP_NICE, CP_IDLE };
    344   1.1       jtc 
    345   1.1       jtc void
    346   1.1       jtc showkre()
    347   1.1       jtc {
    348   1.1       jtc 	float f1, f2;
    349   1.1       jtc 	int psiz, inttotal;
    350   1.1       jtc 	int i, l, c;
    351   1.1       jtc 	static int failcnt = 0;
    352   1.5   thorpej 
    353   1.5   thorpej 	if (state == TIME)
    354   1.5   thorpej 		dkswap();
    355   1.1       jtc 	etime = 0;
    356   1.1       jtc 	for(i = 0; i < CPUSTATES; i++) {
    357   1.1       jtc 		X(time);
    358   1.1       jtc 		etime += s.time[i];
    359   1.1       jtc 	}
    360   1.1       jtc 	if (etime < 5.0) {	/* < 5 ticks - ignore this trash */
    361   1.1       jtc 		if (failcnt++ >= MAXFAIL) {
    362   1.1       jtc 			clear();
    363   1.1       jtc 			mvprintw(2, 10, "The alternate system clock has died!");
    364   1.1       jtc 			mvprintw(3, 10, "Reverting to ``pigs'' display.");
    365   1.1       jtc 			move(CMDLINE, 0);
    366   1.1       jtc 			refresh();
    367   1.1       jtc 			failcnt = 0;
    368   1.1       jtc 			sleep(5);
    369   1.1       jtc 			command("pigs");
    370   1.1       jtc 		}
    371   1.1       jtc 		return;
    372   1.1       jtc 	}
    373   1.1       jtc 	failcnt = 0;
    374   1.1       jtc 	etime /= hertz;
    375   1.1       jtc 	inttotal = 0;
    376   1.1       jtc 	for (i = 0; i < nintr; i++) {
    377   1.1       jtc 		if (s.intrcnt[i] == 0)
    378   1.1       jtc 			continue;
    379   1.1       jtc 		if (intrloc[i] == 0) {
    380   1.1       jtc 			if (nextintsrow == LINES)
    381   1.1       jtc 				continue;
    382   1.1       jtc 			intrloc[i] = nextintsrow++;
    383   1.1       jtc 			mvprintw(intrloc[i], INTSCOL + 9, "%-8.8s",
    384   1.1       jtc 				intrname[i]);
    385   1.1       jtc 		}
    386   1.1       jtc 		X(intrcnt);
    387   1.1       jtc 		l = (int)((float)s.intrcnt[i]/etime + 0.5);
    388   1.1       jtc 		inttotal += l;
    389   1.1       jtc 		putint(l, intrloc[i], INTSCOL, 8);
    390   1.1       jtc 	}
    391   1.1       jtc 	putint(inttotal, INTSROW + 1, INTSCOL, 8);
    392   1.1       jtc 	Z(ncs_goodhits); Z(ncs_badhits); Z(ncs_miss);
    393   1.1       jtc 	Z(ncs_long); Z(ncs_pass2); Z(ncs_2passes);
    394   1.1       jtc 	s.nchcount = nchtotal.ncs_goodhits + nchtotal.ncs_badhits +
    395   1.1       jtc 	    nchtotal.ncs_miss + nchtotal.ncs_long;
    396   1.1       jtc 	if (state == TIME)
    397   1.1       jtc 		s1.nchcount = s.nchcount;
    398   1.1       jtc 
    399   1.1       jtc 	psiz = 0;
    400   1.1       jtc 	f2 = 0.0;
    401   1.1       jtc 
    402   1.1       jtc 	/*
    403   1.1       jtc 	 * Last CPU state not calculated yet.
    404   1.1       jtc 	 */
    405   1.1       jtc 	for (c = 0; c < CPUSTATES - 1; c++) {
    406   1.1       jtc 		i = cpuorder[c];
    407   1.1       jtc 		f1 = cputime(i);
    408   1.1       jtc 		f2 += f1;
    409   1.1       jtc 		l = (int) ((f2 + 1.0) / 2.0) - psiz;
    410   1.1       jtc 		if (c == 0)
    411   1.1       jtc 			putfloat(f1, GRAPHROW, GRAPHCOL + 1, 5, 1, 0);
    412   1.1       jtc 		else
    413   1.1       jtc 			putfloat(f1, GRAPHROW, GRAPHCOL + 12 * c,
    414   1.1       jtc 				5, 1, 0);
    415   1.1       jtc 		move(GRAPHROW + 2, psiz);
    416   1.1       jtc 		psiz += l;
    417   1.1       jtc 		while (l-- > 0)
    418   1.1       jtc 			addch(cpuchar[c]);
    419   1.1       jtc 	}
    420   1.1       jtc 
    421   1.1       jtc 	putint(ucount(), STATROW, STATCOL, 3);
    422   1.1       jtc 	putfloat(avenrun[0], STATROW, STATCOL + 17, 6, 2, 0);
    423   1.1       jtc 	putfloat(avenrun[1], STATROW, STATCOL + 23, 6, 2, 0);
    424   1.1       jtc 	putfloat(avenrun[2], STATROW, STATCOL + 29, 6, 2, 0);
    425   1.1       jtc 	mvaddstr(STATROW, STATCOL + 53, buf);
    426  1.17  drochner #define pgtokb(pg)	((pg) * (s.uvmexp.pagesize / 1024))
    427  1.11       mrg 
    428  1.13       mrg 	putint(pgtokb(s.uvmexp.active), MEMROW + 2, MEMCOL + 6, 7);
    429  1.12       mrg 	putint(pgtokb(s.uvmexp.active + s.uvmexp.swpginuse),	/* XXX */
    430  1.13       mrg 	    MEMROW + 2, MEMCOL + 16, 7);
    431  1.13       mrg 	putint(pgtokb(s.uvmexp.npages - s.uvmexp.free), MEMROW + 3, MEMCOL + 6, 7);
    432  1.12       mrg 	putint(pgtokb(s.uvmexp.npages - s.uvmexp.free + s.uvmexp.swpginuse),
    433  1.13       mrg 	    MEMROW + 3, MEMCOL + 16, 7);
    434  1.13       mrg 	putint(pgtokb(s.uvmexp.free), MEMROW + 2, MEMCOL + 24, 7);
    435  1.12       mrg 	putint(pgtokb(s.uvmexp.free + s.uvmexp.swpages - s.uvmexp.swpginuse),
    436  1.13       mrg 	    MEMROW + 3, MEMCOL + 24, 7);
    437   1.1       jtc 	putint(total.t_rq - 1, PROCSROW + 1, PROCSCOL + 3, 3);
    438  1.13       mrg 	putint(total.t_dw, PROCSROW + 1, PROCSCOL + 6, 3);
    439  1.13       mrg 	putint(total.t_sl, PROCSROW + 1, PROCSCOL + 9, 3);
    440  1.13       mrg 	putint(total.t_sw, PROCSROW + 1, PROCSCOL + 12, 3);
    441  1.12       mrg 	PUTRATE(uvmexp.forks, VMSTATROW + 0, VMSTATCOL + 3, 6);
    442  1.12       mrg 	PUTRATE(uvmexp.forks_ppwait, VMSTATROW + 1, VMSTATCOL + 3, 6);
    443  1.12       mrg 	PUTRATE(uvmexp.forks_sharevm, VMSTATROW + 2, VMSTATCOL + 3, 6);
    444  1.12       mrg 	PUTRATE(uvmexp.fltpgwait, VMSTATROW + 3, VMSTATCOL + 4, 5);
    445  1.12       mrg 	PUTRATE(uvmexp.fltrelck, VMSTATROW + 4, VMSTATCOL + 3, 6);
    446  1.12       mrg 	PUTRATE(uvmexp.fltrelckok, VMSTATROW + 5, VMSTATCOL + 3, 6);
    447  1.12       mrg 	PUTRATE(uvmexp.fltnoram, VMSTATROW + 6, VMSTATCOL + 3, 6);
    448  1.12       mrg 	PUTRATE(uvmexp.fltamcopy, VMSTATROW + 7, VMSTATCOL + 3, 6);
    449  1.12       mrg 	PUTRATE(uvmexp.flt_prcopy, VMSTATROW + 8, VMSTATCOL + 3, 6);
    450  1.12       mrg 	PUTRATE(uvmexp.flt_przero, VMSTATROW + 9, VMSTATCOL + 3, 6);
    451  1.12       mrg 	PUTRATE(uvmexp.flt_acow, VMSTATROW + 10, VMSTATCOL, 9);
    452  1.12       mrg 	putint(s.uvmexp.freemin, VMSTATROW + 11, VMSTATCOL, 9);
    453  1.12       mrg 	putint(s.uvmexp.freetarg, VMSTATROW + 12, VMSTATCOL, 9);
    454  1.12       mrg 	putint(s.uvmexp.inactarg, VMSTATROW + 13, VMSTATCOL, 9);
    455  1.12       mrg 	putint(s.uvmexp.wired, VMSTATROW + 14, VMSTATCOL, 9);
    456  1.12       mrg 	PUTRATE(uvmexp.pdfreed, VMSTATROW + 15, VMSTATCOL, 9);
    457  1.11       mrg 	if (LINES - 1 > VMSTATROW + 16)
    458  1.12       mrg 		PUTRATE(uvmexp.pdscans, VMSTATROW + 16, VMSTATCOL, 9);
    459  1.12       mrg 
    460  1.12       mrg 	PUTRATE(uvmexp.pageins, PAGEROW + 2, PAGECOL + 5, 5);
    461  1.11       mrg 	PUTRATE(uvmexp.pdpageouts, PAGEROW + 2, PAGECOL + 10, 5);
    462  1.12       mrg 	PUTRATE(uvmexp.swapins, PAGEROW + 2, PAGECOL + 15, 5);
    463  1.12       mrg 	PUTRATE(uvmexp.swapouts, PAGEROW + 2, PAGECOL + 20, 5);
    464  1.12       mrg 	PUTRATE(uvmexp.pgswapin, PAGEROW + 3, PAGECOL + 5, 5);
    465  1.12       mrg 	PUTRATE(uvmexp.pgswapout, PAGEROW + 3, PAGECOL + 10, 5);
    466  1.12       mrg 
    467  1.11       mrg 	PUTRATE(uvmexp.swtch, GENSTATROW + 1, GENSTATCOL, 5);
    468  1.11       mrg 	PUTRATE(uvmexp.traps, GENSTATROW + 1, GENSTATCOL + 5, 5);
    469  1.11       mrg 	PUTRATE(uvmexp.syscalls, GENSTATROW + 1, GENSTATCOL + 10, 5);
    470  1.11       mrg 	PUTRATE(uvmexp.intrs, GENSTATROW + 1, GENSTATCOL + 15, 5);
    471  1.11       mrg 	PUTRATE(uvmexp.softs, GENSTATROW + 1, GENSTATCOL + 20, 5);
    472  1.11       mrg 	PUTRATE(uvmexp.faults, GENSTATROW + 1, GENSTATCOL + 25, 5);
    473   1.1       jtc 	mvprintw(DISKROW, DISKCOL + 5, "                              ");
    474   1.1       jtc 	for (i = 0, c = 0; i < dk_ndrive && c < MAXDRIVES; i++)
    475   1.1       jtc 		if (dk_select[i]) {
    476   1.1       jtc 			mvprintw(DISKROW, DISKCOL + 5 + 5 * c,
    477  1.20     soren 				" %4.4s", dr_name[i]);
    478   1.1       jtc 			dinfo(i, ++c);
    479   1.1       jtc 		}
    480   1.1       jtc 	putint(s.nchcount, NAMEIROW + 2, NAMEICOL, 9);
    481   1.1       jtc 	putint(nchtotal.ncs_goodhits, NAMEIROW + 2, NAMEICOL + 9, 9);
    482   1.1       jtc #define nz(x)	((x) ? (x) : 1)
    483   1.1       jtc 	putfloat(nchtotal.ncs_goodhits * 100.0 / nz(s.nchcount),
    484   1.1       jtc 	   NAMEIROW + 2, NAMEICOL + 19, 4, 0, 1);
    485   1.1       jtc 	putint(nchtotal.ncs_pass2, NAMEIROW + 2, NAMEICOL + 23, 9);
    486   1.1       jtc 	putfloat(nchtotal.ncs_pass2 * 100.0 / nz(s.nchcount),
    487   1.1       jtc 	   NAMEIROW + 2, NAMEICOL + 34, 4, 0, 1);
    488   1.1       jtc #undef nz
    489   1.1       jtc }
    490   1.1       jtc 
    491  1.22     jwise void
    492  1.22     jwise vmstat_boot (args)
    493  1.22     jwise 	char *args;
    494  1.22     jwise {
    495  1.22     jwise 	copyinfo(&z, &s1);
    496  1.22     jwise 	state = BOOT;
    497  1.22     jwise }
    498  1.22     jwise 
    499  1.22     jwise void
    500  1.22     jwise vmstat_run (args)
    501  1.22     jwise 	char *args;
    502  1.22     jwise {
    503  1.22     jwise 	copyinfo(&s1, &s2);
    504  1.22     jwise 	state = RUN;
    505  1.22     jwise }
    506  1.22     jwise 
    507  1.22     jwise void
    508  1.22     jwise vmstat_time (args)
    509  1.22     jwise 	char * args;
    510   1.1       jtc {
    511  1.22     jwise 	state = TIME;
    512  1.22     jwise }
    513   1.1       jtc 
    514  1.22     jwise void
    515  1.22     jwise vmstat_zero (args)
    516  1.22     jwise 	char *args;
    517  1.22     jwise {
    518  1.22     jwise 	if (state == RUN)
    519  1.22     jwise 		getinfo(&s1, RUN);
    520   1.1       jtc }
    521   1.1       jtc 
    522   1.1       jtc /* calculate number of users on the system */
    523   1.1       jtc static int
    524   1.1       jtc ucount()
    525   1.1       jtc {
    526  1.21       mrg 	int nusers = 0, onusers = -1;
    527   1.1       jtc 
    528   1.1       jtc 	if (ut < 0)
    529   1.1       jtc 		return (0);
    530   1.1       jtc 	while (read(ut, &utmp, sizeof(utmp)))
    531   1.1       jtc 		if (utmp.ut_name[0] != '\0')
    532   1.1       jtc 			nusers++;
    533   1.1       jtc 
    534  1.21       mrg 	if (nusers != onusers) {
    535  1.21       mrg 		if (nusers == 1)
    536  1.21       mrg 			mvprintw(STATROW, STATCOL + 8, " ");
    537  1.21       mrg 		else
    538  1.21       mrg 			mvprintw(STATROW, STATCOL + 8, "s");
    539  1.21       mrg 	}
    540   1.9    kleink 	lseek(ut, (off_t)0, SEEK_SET);
    541  1.21       mrg 	onusers = nusers;
    542   1.1       jtc 	return (nusers);
    543   1.1       jtc }
    544   1.1       jtc 
    545   1.1       jtc static float
    546   1.1       jtc cputime(indx)
    547   1.1       jtc 	int indx;
    548   1.1       jtc {
    549   1.1       jtc 	double t;
    550  1.10     lukem 	int i;
    551   1.1       jtc 
    552   1.1       jtc 	t = 0;
    553   1.1       jtc 	for (i = 0; i < CPUSTATES; i++)
    554   1.1       jtc 		t += s.time[i];
    555   1.1       jtc 	if (t == 0.0)
    556   1.1       jtc 		t = 1.0;
    557   1.1       jtc 	return (s.time[indx] * 100.0 / t);
    558   1.1       jtc }
    559   1.1       jtc 
    560   1.1       jtc static void
    561   1.1       jtc putint(n, l, c, w)
    562   1.1       jtc 	int n, l, c, w;
    563   1.1       jtc {
    564   1.1       jtc 	char b[128];
    565   1.1       jtc 
    566   1.1       jtc 	move(l, c);
    567   1.1       jtc 	if (n == 0) {
    568   1.1       jtc 		while (w-- > 0)
    569   1.1       jtc 			addch(' ');
    570   1.1       jtc 		return;
    571   1.1       jtc 	}
    572  1.14       mrg 	(void)snprintf(b, sizeof b, "%*d", w, n);
    573   1.1       jtc 	if (strlen(b) > w) {
    574   1.1       jtc 		while (w-- > 0)
    575   1.1       jtc 			addch('*');
    576   1.1       jtc 		return;
    577   1.1       jtc 	}
    578   1.1       jtc 	addstr(b);
    579   1.1       jtc }
    580   1.1       jtc 
    581   1.1       jtc static void
    582   1.1       jtc putfloat(f, l, c, w, d, nz)
    583   1.1       jtc 	double f;
    584   1.1       jtc 	int l, c, w, d, nz;
    585   1.1       jtc {
    586   1.1       jtc 	char b[128];
    587   1.1       jtc 
    588   1.1       jtc 	move(l, c);
    589   1.1       jtc 	if (nz && f == 0.0) {
    590   1.1       jtc 		while (--w >= 0)
    591   1.1       jtc 			addch(' ');
    592   1.1       jtc 		return;
    593   1.1       jtc 	}
    594  1.14       mrg 	(void)snprintf(b, sizeof b, "%*.*f", w, d, f);
    595   1.1       jtc 	if (strlen(b) > w) {
    596   1.1       jtc 		while (--w >= 0)
    597   1.1       jtc 			addch('*');
    598   1.1       jtc 		return;
    599   1.1       jtc 	}
    600   1.1       jtc 	addstr(b);
    601   1.1       jtc }
    602   1.1       jtc 
    603   1.1       jtc static void
    604   1.1       jtc getinfo(s, st)
    605   1.1       jtc 	struct Info *s;
    606   1.1       jtc 	enum state st;
    607   1.1       jtc {
    608   1.4       cgd 	int mib[2];
    609   1.4       cgd 	size_t size;
    610   1.1       jtc 	extern int errno;
    611   1.1       jtc 
    612   1.5   thorpej 	dkreadstats();
    613   1.1       jtc 	NREAD(X_CPTIME, s->time, sizeof s->time);
    614   1.1       jtc 	NREAD(X_NCHSTATS, &s->nchstats, sizeof s->nchstats);
    615   1.1       jtc 	NREAD(X_INTRCNT, s->intrcnt, nintr * LONG);
    616  1.11       mrg 	size = sizeof(s->uvmexp);
    617  1.11       mrg 	mib[0] = CTL_VM;
    618  1.11       mrg 	mib[1] = VM_UVMEXP;
    619  1.11       mrg 	if (sysctl(mib, 2, &s->uvmexp, &size, NULL, 0) < 0) {
    620  1.11       mrg 		error("can't get uvmexp: %s\n", strerror(errno));
    621  1.11       mrg 		memset(&s->uvmexp, 0, sizeof(s->uvmexp));
    622  1.11       mrg 	}
    623   1.1       jtc 	size = sizeof(s->Total);
    624   1.1       jtc 	mib[0] = CTL_VM;
    625   1.1       jtc 	mib[1] = VM_METER;
    626   1.1       jtc 	if (sysctl(mib, 2, &s->Total, &size, NULL, 0) < 0) {
    627   1.1       jtc 		error("Can't get kernel info: %s\n", strerror(errno));
    628  1.10     lukem 		memset(&s->Total, 0, sizeof(s->Total));
    629   1.1       jtc 	}
    630   1.1       jtc }
    631   1.1       jtc 
    632   1.1       jtc static void
    633   1.1       jtc allocinfo(s)
    634   1.1       jtc 	struct Info *s;
    635   1.1       jtc {
    636   1.1       jtc 
    637   1.1       jtc 	s->intrcnt = (long *) malloc(nintr * sizeof(long));
    638   1.3   mycroft 	if (s->intrcnt == NULL)
    639   1.3   mycroft 		errx(2, "out of memory");
    640   1.1       jtc }
    641   1.1       jtc 
    642   1.1       jtc static void
    643   1.1       jtc copyinfo(from, to)
    644  1.10     lukem 	struct Info *from, *to;
    645   1.1       jtc {
    646   1.1       jtc 	long *intrcnt;
    647   1.1       jtc 
    648   1.5   thorpej 	intrcnt = to->intrcnt;
    649   1.1       jtc 	*to = *from;
    650  1.10     lukem 	memmove(to->intrcnt = intrcnt, from->intrcnt, nintr * sizeof (int));
    651   1.1       jtc }
    652   1.1       jtc 
    653   1.1       jtc static void
    654   1.1       jtc dinfo(dn, c)
    655   1.1       jtc 	int dn, c;
    656   1.1       jtc {
    657   1.5   thorpej 	double words, atime;
    658   1.1       jtc 
    659   1.1       jtc 	c = DISKCOL + c * 5;
    660   1.5   thorpej 
    661   1.5   thorpej 	/* time busy in disk activity */
    662   1.5   thorpej 	atime = (double)cur.dk_time[dn].tv_sec +
    663   1.5   thorpej 		((double)cur.dk_time[dn].tv_usec / (double)1000000);
    664   1.5   thorpej 
    665   1.5   thorpej 	words = cur.dk_bytes[dn] / 1024.0;	/* # of K transferred */
    666   1.5   thorpej 
    667   1.5   thorpej 	putint((int)((float)cur.dk_seek[dn]/etime+0.5), DISKROW + 1, c, 5);
    668   1.5   thorpej 	putint((int)((float)cur.dk_xfer[dn]/etime+0.5), DISKROW + 2, c, 5);
    669   1.5   thorpej 	putint((int)(words/etime + 0.5), DISKROW + 3, c, 5);
    670  1.20     soren 	putfloat(atime/etime, DISKROW + 4, c, 5, 2, 1);
    671   1.1       jtc }
    672