2014-02-27 00:33:53 +04:00
|
|
|
/* $NetBSD: uvm_meter.c,v 1.63 2014/02/26 20:33:53 martin Exp $ */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1997 Charles D. Cranor and Washington University.
|
|
|
|
* Copyright (c) 1982, 1986, 1989, 1993
|
2001-05-25 08:06:11 +04:00
|
|
|
* The Regents of the University of California.
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2011-02-02 18:25:27 +03:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1998-02-05 09:25:08 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)vm_meter.c 8.4 (Berkeley) 1/4/94
|
1998-02-07 14:07:38 +03:00
|
|
|
* from: Id: uvm_meter.c,v 1.1.2.1 1997/08/14 19:10:35 chuck Exp
|
1998-02-05 09:25:08 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-10 10:36:59 +03:00
|
|
|
#include <sys/cdefs.h>
|
2014-02-27 00:33:53 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: uvm_meter.c,v 1.63 2014/02/26 20:33:53 martin Exp $");
|
2001-11-10 10:36:59 +03:00
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2010-12-20 03:25:23 +03:00
|
|
|
#include <sys/cpu.h>
|
|
|
|
#include <sys/proc.h>
|
1998-02-05 09:25:08 +03:00
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
2010-11-06 15:18:17 +03:00
|
|
|
#include <uvm/uvm.h>
|
2006-09-15 19:51:12 +04:00
|
|
|
#include <uvm/uvm_pdpolicy.h>
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* maxslp: ???? XXXCDC
|
|
|
|
*/
|
|
|
|
|
|
|
|
int maxslp = MAXSLP; /* patchable ... */
|
2000-11-24 21:54:31 +03:00
|
|
|
struct loadavg averunnable;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
2004-03-24 10:50:48 +03:00
|
|
|
static void uvm_total(struct vmtotal *);
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/*
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
* sysctl helper routine for the vm.vmmeter node.
|
1998-02-05 09:25:08 +03:00
|
|
|
*/
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
static int
|
|
|
|
sysctl_vm_meter(SYSCTLFN_ARGS)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
struct sysctlnode node;
|
1998-02-07 15:45:53 +03:00
|
|
|
struct vmtotal vmtotals;
|
2001-12-09 06:07:19 +03:00
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = &vmtotals;
|
|
|
|
uvm_total(&vmtotals);
|
2001-12-09 06:07:19 +03:00
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
return (sysctl_lookup(SYSCTLFN_CALL(&node)));
|
|
|
|
}
|
2001-03-09 04:02:10 +03:00
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
/*
|
|
|
|
* sysctl helper routine for the vm.uvmexp node.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_vm_uvmexp(SYSCTLFN_ARGS)
|
|
|
|
{
|
|
|
|
struct sysctlnode node;
|
2001-07-14 10:36:01 +04:00
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
node = *rnode;
|
2011-11-13 06:10:40 +04:00
|
|
|
if (oldlenp)
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
node.sysctl_size = min(*oldlenp, node.sysctl_size);
|
2001-07-14 10:36:01 +04:00
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
return (sysctl_lookup(SYSCTLFN_CALL(&node)));
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
2000-11-29 12:52:18 +03:00
|
|
|
static int
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
sysctl_vm_uvmexp2(SYSCTLFN_ARGS)
|
2000-11-29 12:52:18 +03:00
|
|
|
{
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
struct sysctlnode node;
|
2000-11-29 12:52:18 +03:00
|
|
|
struct uvmexp_sysctl u;
|
2006-09-15 19:51:12 +04:00
|
|
|
int active, inactive;
|
2010-12-20 03:25:23 +03:00
|
|
|
CPU_INFO_ITERATOR cii;
|
|
|
|
struct cpu_info *ci;
|
2006-09-15 19:51:12 +04:00
|
|
|
|
|
|
|
uvm_estimatepageable(&active, &inactive);
|
2000-11-29 12:52:18 +03:00
|
|
|
|
2000-11-30 14:04:43 +03:00
|
|
|
memset(&u, 0, sizeof(u));
|
|
|
|
|
|
|
|
/* Entries here are in order of uvmexp_sysctl, not uvmexp */
|
2000-11-29 12:52:18 +03:00
|
|
|
u.pagesize = uvmexp.pagesize;
|
|
|
|
u.pagemask = uvmexp.pagemask;
|
|
|
|
u.pageshift = uvmexp.pageshift;
|
|
|
|
u.npages = uvmexp.npages;
|
|
|
|
u.free = uvmexp.free;
|
2006-09-15 19:51:12 +04:00
|
|
|
u.active = active;
|
|
|
|
u.inactive = inactive;
|
2000-11-29 12:52:18 +03:00
|
|
|
u.paging = uvmexp.paging;
|
|
|
|
u.wired = uvmexp.wired;
|
|
|
|
u.zeropages = uvmexp.zeropages;
|
|
|
|
u.reserve_pagedaemon = uvmexp.reserve_pagedaemon;
|
|
|
|
u.reserve_kernel = uvmexp.reserve_kernel;
|
|
|
|
u.freemin = uvmexp.freemin;
|
|
|
|
u.freetarg = uvmexp.freetarg;
|
2006-09-15 19:51:12 +04:00
|
|
|
u.inactarg = 0; /* unused */
|
2000-11-29 12:52:18 +03:00
|
|
|
u.wiredmax = uvmexp.wiredmax;
|
|
|
|
u.nswapdev = uvmexp.nswapdev;
|
|
|
|
u.swpages = uvmexp.swpages;
|
|
|
|
u.swpginuse = uvmexp.swpginuse;
|
|
|
|
u.swpgonly = uvmexp.swpgonly;
|
|
|
|
u.nswget = uvmexp.nswget;
|
2010-12-20 03:25:23 +03:00
|
|
|
for (CPU_INFO_FOREACH(cii, ci)) {
|
|
|
|
u.faults += ci->ci_data.cpu_nfault;
|
|
|
|
u.traps += ci->ci_data.cpu_ntrap;
|
|
|
|
u.intrs += ci->ci_data.cpu_nintr;
|
|
|
|
u.swtch += ci->ci_data.cpu_nswtch;
|
|
|
|
u.softs += ci->ci_data.cpu_nsoft;
|
|
|
|
u.syscalls += ci->ci_data.cpu_nsyscall;
|
|
|
|
}
|
2000-11-29 12:52:18 +03:00
|
|
|
u.pageins = uvmexp.pageins;
|
|
|
|
u.pgswapin = uvmexp.pgswapin;
|
|
|
|
u.pgswapout = uvmexp.pgswapout;
|
|
|
|
u.forks = uvmexp.forks;
|
|
|
|
u.forks_ppwait = uvmexp.forks_ppwait;
|
|
|
|
u.forks_sharevm = uvmexp.forks_sharevm;
|
|
|
|
u.pga_zerohit = uvmexp.pga_zerohit;
|
|
|
|
u.pga_zeromiss = uvmexp.pga_zeromiss;
|
|
|
|
u.zeroaborts = uvmexp.zeroaborts;
|
|
|
|
u.fltnoram = uvmexp.fltnoram;
|
|
|
|
u.fltnoanon = uvmexp.fltnoanon;
|
|
|
|
u.fltpgwait = uvmexp.fltpgwait;
|
|
|
|
u.fltpgrele = uvmexp.fltpgrele;
|
|
|
|
u.fltrelck = uvmexp.fltrelck;
|
|
|
|
u.fltrelckok = uvmexp.fltrelckok;
|
|
|
|
u.fltanget = uvmexp.fltanget;
|
|
|
|
u.fltanretry = uvmexp.fltanretry;
|
|
|
|
u.fltamcopy = uvmexp.fltamcopy;
|
|
|
|
u.fltnamap = uvmexp.fltnamap;
|
|
|
|
u.fltnomap = uvmexp.fltnomap;
|
|
|
|
u.fltlget = uvmexp.fltlget;
|
|
|
|
u.fltget = uvmexp.fltget;
|
|
|
|
u.flt_anon = uvmexp.flt_anon;
|
|
|
|
u.flt_acow = uvmexp.flt_acow;
|
|
|
|
u.flt_obj = uvmexp.flt_obj;
|
|
|
|
u.flt_prcopy = uvmexp.flt_prcopy;
|
|
|
|
u.flt_przero = uvmexp.flt_przero;
|
|
|
|
u.pdwoke = uvmexp.pdwoke;
|
|
|
|
u.pdrevs = uvmexp.pdrevs;
|
|
|
|
u.pdfreed = uvmexp.pdfreed;
|
|
|
|
u.pdscans = uvmexp.pdscans;
|
|
|
|
u.pdanscan = uvmexp.pdanscan;
|
|
|
|
u.pdobscan = uvmexp.pdobscan;
|
|
|
|
u.pdreact = uvmexp.pdreact;
|
|
|
|
u.pdbusy = uvmexp.pdbusy;
|
|
|
|
u.pdpageouts = uvmexp.pdpageouts;
|
|
|
|
u.pdpending = uvmexp.pdpending;
|
|
|
|
u.pddeact = uvmexp.pddeact;
|
2000-11-30 14:04:43 +03:00
|
|
|
u.anonpages = uvmexp.anonpages;
|
2001-12-09 06:07:19 +03:00
|
|
|
u.filepages = uvmexp.filepages;
|
|
|
|
u.execpages = uvmexp.execpages;
|
2001-04-29 08:23:20 +04:00
|
|
|
u.colorhit = uvmexp.colorhit;
|
|
|
|
u.colormiss = uvmexp.colormiss;
|
2008-06-04 16:45:28 +04:00
|
|
|
u.cpuhit = uvmexp.cpuhit;
|
|
|
|
u.cpumiss = uvmexp.cpumiss;
|
2000-11-29 12:52:18 +03:00
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = &u;
|
|
|
|
node.sysctl_size = sizeof(u);
|
2011-12-30 23:01:07 +04:00
|
|
|
if (oldlenp)
|
|
|
|
node.sysctl_size = min(*oldlenp, node.sysctl_size);
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
return (sysctl_lookup(SYSCTLFN_CALL(&node)));
|
|
|
|
}
|
|
|
|
|
2005-12-21 15:19:04 +03:00
|
|
|
/*
|
|
|
|
* sysctl helper routine for uvm_pctparam.
|
|
|
|
*/
|
|
|
|
static int
|
2006-09-15 19:51:12 +04:00
|
|
|
uvm_sysctlpctparam(SYSCTLFN_ARGS)
|
2005-12-21 15:19:04 +03:00
|
|
|
{
|
|
|
|
int t, error;
|
|
|
|
struct sysctlnode node;
|
|
|
|
struct uvm_pctparam *pct;
|
|
|
|
|
|
|
|
pct = rnode->sysctl_data;
|
|
|
|
t = pct->pct_pct;
|
|
|
|
|
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = &t;
|
|
|
|
error = sysctl_lookup(SYSCTLFN_CALL(&node));
|
|
|
|
if (error || newp == NULL)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if (t < 0 || t > 100)
|
|
|
|
return EINVAL;
|
|
|
|
|
2006-09-15 19:51:12 +04:00
|
|
|
error = uvm_pctparam_check(pct, t);
|
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
}
|
2005-12-21 15:19:04 +03:00
|
|
|
uvm_pctparam_set(pct, t);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
/*
|
|
|
|
* uvm_sysctl: sysctl hook into UVM system.
|
|
|
|
*/
|
|
|
|
SYSCTL_SETUP(sysctl_vm_setup, "sysctl vm subtree setup")
|
|
|
|
{
|
|
|
|
|
2004-03-24 18:34:46 +03:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT,
|
2004-05-25 08:31:17 +04:00
|
|
|
CTLTYPE_STRUCT, "vmmeter",
|
|
|
|
SYSCTL_DESCR("Simple system-wide virtual memory "
|
|
|
|
"statistics"),
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
sysctl_vm_meter, 0, NULL, sizeof(struct vmtotal),
|
|
|
|
CTL_VM, VM_METER, CTL_EOL);
|
2004-03-24 18:34:46 +03:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT,
|
2004-05-25 08:31:17 +04:00
|
|
|
CTLTYPE_STRUCT, "loadavg",
|
|
|
|
SYSCTL_DESCR("System load average history"),
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
NULL, 0, &averunnable, sizeof(averunnable),
|
|
|
|
CTL_VM, VM_LOADAVG, CTL_EOL);
|
2004-03-24 18:34:46 +03:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT,
|
2004-05-25 08:31:17 +04:00
|
|
|
CTLTYPE_STRUCT, "uvmexp",
|
|
|
|
SYSCTL_DESCR("Detailed system-wide virtual memory "
|
|
|
|
"statistics"),
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
sysctl_vm_uvmexp, 0, &uvmexp, sizeof(uvmexp),
|
|
|
|
CTL_VM, VM_UVMEXP, CTL_EOL);
|
2004-03-24 18:34:46 +03:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT,
|
2004-05-25 08:31:17 +04:00
|
|
|
CTLTYPE_STRUCT, "uvmexp2",
|
|
|
|
SYSCTL_DESCR("Detailed system-wide virtual memory "
|
|
|
|
"statistics (MI)"),
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
sysctl_vm_uvmexp2, 0, NULL, 0,
|
|
|
|
CTL_VM, VM_UVMEXP2, CTL_EOL);
|
2004-03-24 18:34:46 +03:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
2004-05-25 08:31:17 +04:00
|
|
|
CTLFLAG_PERMANENT, CTLTYPE_INT, "maxslp",
|
|
|
|
SYSCTL_DESCR("Maximum process sleep time before being "
|
|
|
|
"swapped"),
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
NULL, 0, &maxslp, 0,
|
|
|
|
CTL_VM, VM_MAXSLP, CTL_EOL);
|
2004-03-24 18:34:46 +03:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
|
2004-05-25 08:31:17 +04:00
|
|
|
CTLTYPE_INT, "uspace",
|
|
|
|
SYSCTL_DESCR("Number of bytes allocated for a kernel "
|
|
|
|
"stack"),
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
NULL, USPACE, NULL, 0,
|
|
|
|
CTL_VM, VM_USPACE, CTL_EOL);
|
2004-10-10 13:57:31 +04:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
2010-04-11 05:53:03 +04:00
|
|
|
CTLTYPE_BOOL, "idlezero",
|
2004-10-10 13:57:31 +04:00
|
|
|
SYSCTL_DESCR("Whether try to zero pages in idle loop"),
|
|
|
|
NULL, 0, &vm_page_zero_enable, 0,
|
|
|
|
CTL_VM, CTL_CREATE, CTL_EOL);
|
2014-02-26 20:11:59 +04:00
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
|
|
|
|
CTLTYPE_LONG, "minaddress",
|
|
|
|
SYSCTL_DESCR("Minimum user address"),
|
2014-02-27 00:33:53 +04:00
|
|
|
NULL, VM_MIN_ADDRESS, NULL, 0,
|
2014-02-26 20:11:59 +04:00
|
|
|
CTL_VM, VM_MINADDRESS, CTL_EOL);
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
|
|
|
|
CTLTYPE_LONG, "maxaddress",
|
|
|
|
SYSCTL_DESCR("Maximum user address"),
|
2014-02-27 00:33:53 +04:00
|
|
|
NULL, VM_MAX_ADDRESS, NULL, 0,
|
2014-02-26 20:11:59 +04:00
|
|
|
CTL_VM, VM_MAXADDRESS, CTL_EOL);
|
2006-09-15 19:51:12 +04:00
|
|
|
|
|
|
|
uvmpdpol_sysctlsetup();
|
2000-11-29 12:52:18 +03:00
|
|
|
}
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* uvm_total: calculate the current state of the system.
|
|
|
|
*/
|
1998-02-07 15:45:53 +03:00
|
|
|
static void
|
2005-06-27 06:19:48 +04:00
|
|
|
uvm_total(struct vmtotal *totalp)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2003-01-18 11:51:40 +03:00
|
|
|
struct lwp *l;
|
1998-02-05 09:25:08 +03:00
|
|
|
#if 0
|
2001-06-02 22:09:08 +04:00
|
|
|
struct vm_map_entry * entry;
|
|
|
|
struct vm_map *map;
|
1998-02-07 15:45:53 +03:00
|
|
|
int paging;
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
2006-09-15 19:51:12 +04:00
|
|
|
int active;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-08-10 02:36:37 +04:00
|
|
|
memset(totalp, 0, sizeof *totalp);
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-02-07 15:45:53 +03:00
|
|
|
/*
|
|
|
|
* calculate process statistics
|
|
|
|
*/
|
2008-04-24 19:35:27 +04:00
|
|
|
mutex_enter(proc_lock);
|
2007-02-10 00:55:00 +03:00
|
|
|
LIST_FOREACH(l, &alllwp, l_list) {
|
2007-02-18 01:31:36 +03:00
|
|
|
if (l->l_proc->p_flag & PK_SYSTEM)
|
1998-02-07 15:45:53 +03:00
|
|
|
continue;
|
2003-01-18 11:51:40 +03:00
|
|
|
switch (l->l_stat) {
|
1998-02-07 15:45:53 +03:00
|
|
|
case 0:
|
|
|
|
continue;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
case LSSLEEP:
|
|
|
|
case LSSTOP:
|
2010-11-16 06:49:53 +03:00
|
|
|
if ((l->l_flag & LW_SINTR) == 0) {
|
2009-10-22 01:11:57 +04:00
|
|
|
totalp->t_dw++;
|
|
|
|
} else if (l->l_slptime < maxslp) {
|
|
|
|
totalp->t_sl++;
|
|
|
|
}
|
2003-01-18 11:51:40 +03:00
|
|
|
if (l->l_slptime >= maxslp)
|
1998-02-07 15:45:53 +03:00
|
|
|
continue;
|
|
|
|
break;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
case LSRUN:
|
|
|
|
case LSONPROC:
|
|
|
|
case LSIDL:
|
2009-10-22 01:11:57 +04:00
|
|
|
totalp->t_rq++;
|
2003-01-18 11:51:40 +03:00
|
|
|
if (l->l_stat == LSIDL)
|
1998-02-07 15:45:53 +03:00
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* note active objects
|
|
|
|
*/
|
1998-02-05 09:25:08 +03:00
|
|
|
#if 0
|
1998-02-07 15:45:53 +03:00
|
|
|
/*
|
2005-11-09 15:47:39 +03:00
|
|
|
* XXXCDC: BOGUS! rethink this. in the mean time
|
1998-02-09 01:23:33 +03:00
|
|
|
* don't do it.
|
1998-02-07 15:45:53 +03:00
|
|
|
*/
|
|
|
|
paging = 0;
|
1998-02-09 01:23:33 +03:00
|
|
|
vm_map_lock(map);
|
1998-02-07 15:45:53 +03:00
|
|
|
for (map = &p->p_vmspace->vm_map, entry = map->header.next;
|
|
|
|
entry != &map->header; entry = entry->next) {
|
|
|
|
if (entry->is_a_map || entry->is_sub_map ||
|
1998-02-09 01:23:33 +03:00
|
|
|
entry->object.uvm_obj == NULL)
|
1998-02-07 15:45:53 +03:00
|
|
|
continue;
|
1998-02-09 01:23:33 +03:00
|
|
|
/* XXX how to do this with uvm */
|
1998-02-07 15:45:53 +03:00
|
|
|
}
|
1998-02-09 01:23:33 +03:00
|
|
|
vm_map_unlock(map);
|
1998-02-07 15:45:53 +03:00
|
|
|
if (paging)
|
|
|
|
totalp->t_pw++;
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
1998-02-07 15:45:53 +03:00
|
|
|
}
|
2008-04-24 19:35:27 +04:00
|
|
|
mutex_exit(proc_lock);
|
2007-02-10 00:55:00 +03:00
|
|
|
|
1998-02-07 15:45:53 +03:00
|
|
|
/*
|
|
|
|
* Calculate object memory usage statistics.
|
|
|
|
*/
|
2006-09-15 19:51:12 +04:00
|
|
|
uvm_estimatepageable(&active, NULL);
|
1998-02-09 01:23:33 +03:00
|
|
|
totalp->t_free = uvmexp.free;
|
|
|
|
totalp->t_vm = uvmexp.npages - uvmexp.free + uvmexp.swpginuse;
|
2006-09-15 19:51:12 +04:00
|
|
|
totalp->t_avm = active + uvmexp.swpginuse; /* XXX */
|
1998-02-09 01:23:33 +03:00
|
|
|
totalp->t_rm = uvmexp.npages - uvmexp.free;
|
2006-09-15 19:51:12 +04:00
|
|
|
totalp->t_arm = active;
|
1998-02-09 01:23:33 +03:00
|
|
|
totalp->t_vmshr = 0; /* XXX */
|
|
|
|
totalp->t_avmshr = 0; /* XXX */
|
|
|
|
totalp->t_rmshr = 0; /* XXX */
|
|
|
|
totalp->t_armshr = 0; /* XXX */
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
2005-12-21 15:19:04 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
uvm_pctparam_set(struct uvm_pctparam *pct, int val)
|
|
|
|
{
|
|
|
|
|
|
|
|
pct->pct_pct = val;
|
|
|
|
pct->pct_scaled = val * UVM_PCTPARAM_SCALE / 100;
|
|
|
|
}
|
2006-09-15 19:51:12 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
uvm_pctparam_get(struct uvm_pctparam *pct)
|
|
|
|
{
|
|
|
|
|
|
|
|
return pct->pct_pct;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
uvm_pctparam_check(struct uvm_pctparam *pct, int val)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (pct->pct_check == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return (*pct->pct_check)(pct, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
uvm_pctparam_init(struct uvm_pctparam *pct, int val,
|
|
|
|
int (*fn)(struct uvm_pctparam *, int))
|
|
|
|
{
|
|
|
|
|
|
|
|
pct->pct_check = fn;
|
|
|
|
uvm_pctparam_set(pct, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
uvm_pctparam_createsysctlnode(struct uvm_pctparam *pct, const char *name,
|
2006-11-01 13:17:58 +03:00
|
|
|
const char *desc)
|
2006-09-15 19:51:12 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
return sysctl_createv(NULL, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_INT, name, SYSCTL_DESCR(desc),
|
2012-06-03 01:36:41 +04:00
|
|
|
uvm_sysctlpctparam, 0, (void *)pct, 0, CTL_VM, CTL_CREATE, CTL_EOL);
|
2006-09-15 19:51:12 +04:00
|
|
|
}
|