Home | History | Annotate | Line # | Download | only in uvm
uvm_stat.c revision 1.12
      1  1.12      chs /*	$NetBSD: uvm_stat.c,v 1.12 1999/03/26 17:34:16 chs Exp $	 */
      2   1.1      mrg 
      3   1.1      mrg /*
      4   1.1      mrg  *
      5   1.1      mrg  * Copyright (c) 1997 Charles D. Cranor and Washington University.
      6   1.1      mrg  * All rights reserved.
      7   1.1      mrg  *
      8   1.1      mrg  * Redistribution and use in source and binary forms, with or without
      9   1.1      mrg  * modification, are permitted provided that the following conditions
     10   1.1      mrg  * are met:
     11   1.1      mrg  * 1. Redistributions of source code must retain the above copyright
     12   1.1      mrg  *    notice, this list of conditions and the following disclaimer.
     13   1.1      mrg  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1      mrg  *    notice, this list of conditions and the following disclaimer in the
     15   1.1      mrg  *    documentation and/or other materials provided with the distribution.
     16   1.1      mrg  * 3. All advertising materials mentioning features or use of this software
     17   1.1      mrg  *    must display the following acknowledgement:
     18   1.1      mrg  *      This product includes software developed by Charles D. Cranor and
     19   1.1      mrg  *      Washington University.
     20   1.1      mrg  * 4. The name of the author may not be used to endorse or promote products
     21   1.1      mrg  *    derived from this software without specific prior written permission.
     22   1.1      mrg  *
     23   1.1      mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24   1.1      mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25   1.1      mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26   1.1      mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27   1.1      mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28   1.1      mrg  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29   1.1      mrg  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30   1.1      mrg  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31   1.1      mrg  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32   1.1      mrg  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33   1.3      mrg  *
     34   1.7  thorpej  * from: Id: uvm_stat.c,v 1.1.2.3 1997/12/19 15:01:00 mrg Exp
     35   1.1      mrg  */
     36   1.4      mrg 
     37   1.4      mrg #include "opt_uvmhist.h"
     38   1.1      mrg 
     39   1.1      mrg /*
     40   1.1      mrg  * uvm_stat.c
     41   1.1      mrg  */
     42   1.1      mrg 
     43   1.1      mrg #include <sys/param.h>
     44   1.1      mrg #include <sys/systm.h>
     45   1.1      mrg 
     46   1.1      mrg #include <vm/vm.h>
     47   1.1      mrg 
     48   1.1      mrg #include <uvm/uvm.h>
     49   1.1      mrg 
     50   1.5  thorpej /*
     51   1.5  thorpej  * globals
     52   1.5  thorpej  */
     53   1.5  thorpej 
     54   1.6  thorpej struct uvm_cnt *uvm_cnt_head = NULL;
     55   1.6  thorpej 
     56   1.6  thorpej #ifdef UVMHIST
     57   1.6  thorpej struct uvm_history_head uvm_histories;
     58   1.6  thorpej #endif
     59   1.6  thorpej 
     60   1.5  thorpej #ifdef UVMHIST_PRINT
     61   1.5  thorpej int uvmhist_print_enabled = 1;
     62   1.5  thorpej #endif
     63   1.1      mrg 
     64   1.1      mrg /*
     65   1.1      mrg  * prototypes
     66   1.1      mrg  */
     67   1.1      mrg 
     68   1.6  thorpej #ifdef UVMHIST
     69   1.1      mrg void uvmhist_dump __P((struct uvm_history *));
     70  1.10      mrg void uvm_hist __P((u_int32_t));
     71  1.10      mrg static void uvmhist_dump_histories __P((struct uvm_history *[]));
     72   1.6  thorpej #endif
     73   1.1      mrg void uvmcnt_dump __P((void));
     74   1.7  thorpej void uvm_dump   __P((void));
     75   1.1      mrg 
     76  1.10      mrg 
     77   1.1      mrg #ifdef UVMHIST
     78   1.1      mrg /* call this from ddb */
     79   1.1      mrg void
     80   1.1      mrg uvmhist_dump(l)
     81   1.7  thorpej 	struct uvm_history *l;
     82   1.7  thorpej {
     83   1.7  thorpej 	int lcv, s;
     84   1.1      mrg 
     85   1.7  thorpej 	s = splhigh();
     86   1.7  thorpej 	lcv = l->f;
     87   1.7  thorpej 	do {
     88   1.7  thorpej 		if (l->e[lcv].fmt)
     89   1.7  thorpej 			uvmhist_print(&l->e[lcv]);
     90   1.7  thorpej 		lcv = (lcv + 1) % l->n;
     91   1.7  thorpej 	} while (lcv != l->f);
     92   1.7  thorpej 	splx(s);
     93  1.10      mrg }
     94  1.10      mrg 
     95  1.10      mrg /*
     96  1.10      mrg  * print a merged list of uvm_history structures
     97  1.10      mrg  */
     98  1.10      mrg static void
     99  1.10      mrg uvmhist_dump_histories(hists)
    100  1.10      mrg 	struct uvm_history *hists[];
    101  1.10      mrg {
    102  1.10      mrg 	struct timeval  tv;
    103  1.10      mrg 	int	cur[MAXHISTS];
    104  1.10      mrg 	int	s, lcv, hi;
    105  1.10      mrg 
    106  1.10      mrg 	/* so we don't get corrupted lists! */
    107  1.10      mrg 	s = splhigh();
    108  1.10      mrg 
    109  1.10      mrg 	/* find the first of each list */
    110  1.10      mrg 	for (lcv = 0; hists[lcv]; lcv++)
    111  1.10      mrg 		 cur[lcv] = hists[lcv]->f;
    112  1.10      mrg 
    113  1.10      mrg 	/*
    114  1.10      mrg 	 * here we loop "forever", finding the next earliest
    115  1.10      mrg 	 * history entry and printing it.  cur[X] is the current
    116  1.10      mrg 	 * entry to test for the history in hists[X].  if it is
    117  1.10      mrg 	 * -1, then this history is finished.
    118  1.10      mrg 	 */
    119  1.10      mrg 	for (;;) {
    120  1.10      mrg 		hi = -1;
    121  1.10      mrg 		tv.tv_sec = tv.tv_usec = 0;
    122  1.10      mrg 
    123  1.10      mrg 		/* loop over each history */
    124  1.10      mrg 		for (lcv = 0; hists[lcv]; lcv++) {
    125  1.10      mrg restart:
    126  1.10      mrg 			if (cur[lcv] == -1)
    127  1.10      mrg 				continue;
    128  1.10      mrg 
    129  1.10      mrg 			/*
    130  1.10      mrg 			 * if the format is empty, go to the next entry
    131  1.10      mrg 			 * and retry.
    132  1.10      mrg 			 */
    133  1.10      mrg 			if (hists[lcv]->e[cur[lcv]].fmt == NULL) {
    134  1.10      mrg 				cur[lcv] = (cur[lcv] + 1) % (hists[lcv]->n);
    135  1.10      mrg 				if (cur[lcv] == hists[lcv]->f)
    136  1.10      mrg 					cur[lcv] = -1;
    137  1.10      mrg 				goto restart;
    138  1.10      mrg 			}
    139  1.10      mrg 
    140  1.10      mrg 			/*
    141  1.10      mrg 			 * if the time hasn't been set yet, or this entry is
    142  1.10      mrg 			 * earlier than the current tv, set the time and history
    143  1.10      mrg 			 * index.
    144  1.10      mrg 			 */
    145  1.10      mrg 			if (tv.tv_sec == 0 ||
    146  1.10      mrg 			    timercmp(&hists[lcv]->e[cur[lcv]].tv, &tv, <)) {
    147  1.10      mrg 				tv = hists[lcv]->e[cur[lcv]].tv;
    148  1.10      mrg 				hi = lcv;
    149  1.10      mrg 			}
    150  1.10      mrg 		}
    151  1.10      mrg 
    152  1.10      mrg 		/* if we didn't find any entries, we must be done */
    153  1.10      mrg 		if (hi == -1)
    154  1.10      mrg 			break;
    155  1.10      mrg 
    156  1.10      mrg 		/* print and move to the next entry */
    157  1.10      mrg 		uvmhist_print(&hists[hi]->e[cur[hi]]);
    158  1.10      mrg 		cur[hi] = (cur[hi] + 1) % (hists[hi]->n);
    159  1.10      mrg 		if (cur[hi] == hists[hi]->f)
    160  1.10      mrg 			cur[hi] = -1;
    161  1.10      mrg 	}
    162  1.10      mrg 
    163  1.10      mrg 	/* done! */
    164  1.10      mrg 	splx(s);
    165  1.10      mrg }
    166  1.10      mrg 
    167  1.10      mrg /*
    168  1.10      mrg  * call this from ddb.  `bitmask' is from <uvm/uvm_stat.h>.  it
    169  1.10      mrg  * merges the named histories.
    170  1.10      mrg  */
    171  1.10      mrg void
    172  1.10      mrg uvm_hist(bitmask)
    173  1.10      mrg 	u_int32_t	bitmask;	/* XXX only support 32 hists */
    174  1.10      mrg {
    175  1.10      mrg 	struct uvm_history *hists[MAXHISTS + 1];
    176  1.10      mrg 	int i = 0;
    177  1.10      mrg 
    178  1.10      mrg 	if ((bitmask & UVMHIST_MAPHIST) || bitmask == 0)
    179  1.10      mrg 		hists[i++] = &maphist;
    180  1.10      mrg 
    181  1.10      mrg 	if ((bitmask & UVMHIST_PDHIST) || bitmask == 0)
    182  1.10      mrg 		hists[i++] = &pdhist;
    183  1.10      mrg 
    184  1.10      mrg 	hists[i] = NULL;
    185  1.10      mrg 
    186  1.10      mrg 	uvmhist_dump_histories(hists);
    187   1.1      mrg }
    188   1.7  thorpej #endif /* UVMHIST */
    189   1.1      mrg 
    190   1.1      mrg void
    191   1.1      mrg uvmcnt_dump()
    192   1.7  thorpej {
    193   1.7  thorpej 	struct uvm_cnt *uvc = uvm_cnt_head;
    194   1.1      mrg 
    195   1.7  thorpej 	while (uvc) {
    196   1.7  thorpej 		if ((uvc->t & UVMCNT_MASK) != UVMCNT_CNT)
    197   1.7  thorpej 			continue;
    198   1.7  thorpej 		printf("%s = %d\n", uvc->name, uvc->c);
    199   1.7  thorpej 		uvc = uvc->next;
    200   1.7  thorpej 	}
    201   1.1      mrg }
    202   1.1      mrg 
    203   1.1      mrg /*
    204   1.1      mrg  * uvm_dump: ddb hook to dump interesting uvm counters
    205   1.1      mrg  */
    206   1.7  thorpej void
    207   1.7  thorpej uvm_dump()
    208   1.7  thorpej {
    209   1.1      mrg 
    210   1.7  thorpej 	printf("Current UVM status:\n");
    211   1.7  thorpej 	printf("  pagesize=%d (0x%x), pagemask=0x%x, pageshift=%d\n",
    212   1.7  thorpej 	    uvmexp.pagesize, uvmexp.pagesize, uvmexp.pagemask,
    213   1.7  thorpej 	    uvmexp.pageshift);
    214   1.7  thorpej 	printf("  %d VM pages: %d active, %d inactive, %d wired, %d free\n",
    215   1.7  thorpej 	    uvmexp.npages, uvmexp.active, uvmexp.inactive, uvmexp.wired,
    216   1.7  thorpej 	    uvmexp.free);
    217   1.7  thorpej 	printf("  freemin=%d, free-target=%d, inactive-target=%d, "
    218   1.7  thorpej 	    "wired-max=%d\n", uvmexp.freemin, uvmexp.freetarg, uvmexp.inactarg,
    219   1.7  thorpej 	    uvmexp.wiredmax);
    220   1.7  thorpej 	printf("  faults=%d, traps=%d, intrs=%d, ctxswitch=%d\n",
    221   1.7  thorpej 	    uvmexp.faults, uvmexp.traps, uvmexp.intrs, uvmexp.swtch);
    222   1.7  thorpej 	printf("  softint=%d, syscalls=%d, swapins=%d, swapouts=%d\n",
    223   1.7  thorpej 	    uvmexp.softs, uvmexp.syscalls, uvmexp.swapins, uvmexp.swapouts);
    224   1.7  thorpej 
    225   1.7  thorpej 	printf("  fault counts:\n");
    226   1.7  thorpej 	printf("    noram=%d, noanon=%d, pgwait=%d, pgrele=%d\n",
    227   1.7  thorpej 	    uvmexp.fltnoram, uvmexp.fltnoanon, uvmexp.fltpgwait,
    228   1.7  thorpej 	    uvmexp.fltpgrele);
    229   1.7  thorpej 	printf("    ok relocks(total)=%d(%d), anget(retrys)=%d(%d), "
    230   1.7  thorpej 	    "amapcopy=%d\n", uvmexp.fltrelckok, uvmexp.fltrelck,
    231   1.7  thorpej 	    uvmexp.fltanget, uvmexp.fltanretry, uvmexp.fltamcopy);
    232   1.7  thorpej 	printf("    neighbor anon/obj pg=%d/%d, gets(lock/unlock)=%d/%d\n",
    233   1.7  thorpej 	    uvmexp.fltnamap, uvmexp.fltnomap, uvmexp.fltlget, uvmexp.fltget);
    234   1.7  thorpej 	printf("    cases: anon=%d, anoncow=%d, obj=%d, prcopy=%d, przero=%d\n",
    235   1.7  thorpej 	    uvmexp.flt_anon, uvmexp.flt_acow, uvmexp.flt_obj, uvmexp.flt_prcopy,
    236   1.7  thorpej 	    uvmexp.flt_przero);
    237   1.7  thorpej 
    238   1.7  thorpej 	printf("  daemon and swap counts:\n");
    239   1.7  thorpej 	printf("    woke=%d, revs=%d, scans=%d, swout=%d\n", uvmexp.pdwoke,
    240   1.7  thorpej 	    uvmexp.pdrevs, uvmexp.pdscans, uvmexp.pdswout);
    241   1.7  thorpej 	printf("    busy=%d, freed=%d, reactivate=%d, deactivate=%d\n",
    242   1.7  thorpej 	    uvmexp.pdbusy, uvmexp.pdfreed, uvmexp.pdreact, uvmexp.pddeact);
    243   1.7  thorpej 	printf("    pageouts=%d, pending=%d, nswget=%d\n", uvmexp.pdpageouts,
    244   1.7  thorpej 	    uvmexp.pdpending, uvmexp.nswget);
    245   1.7  thorpej 	printf("    nswapdev=%d, nanon=%d, nfreeanon=%d\n", uvmexp.nswapdev,
    246   1.7  thorpej 	    uvmexp.nanon, uvmexp.nfreeanon);
    247  1.12      chs 	printf("    swpages=%d, swpginuse=%d, swpgonly=%d paging=%d\n",
    248  1.12      chs 	    uvmexp.swpages, uvmexp.swpginuse, uvmexp.swpgonly, uvmexp.paging);
    249   1.9    chuck 
    250   1.9    chuck 	printf("  kernel pointers:\n");
    251   1.9    chuck 	printf("    objs(kern/kmem/mb)=%p/%p/%p\n", uvm.kernel_object,
    252   1.9    chuck 	    uvmexp.kmem_object, uvmexp.mb_object);
    253   1.1      mrg }
    254