summaryrefslogtreecommitdiffstats
path: root/usr.bin/vmstat/vmstat.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-2/+2
* no need to kvm the palloc. the pgsize is more correctly accessed via pool.tedu2014-12-191-11/+2
* <sys/buf.h> isn't actually needed hereguenther2014-11-231-2/+1
* Remove non-standard <sys/dkstat.h> header. It has not contained anythingmiod2014-09-151-2/+2
* Display zero page hit and miss counters in vmstat -s.kettenis2014-07-131-1/+3
* decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.hderaadt2014-07-081-4/+1
* populate pool npages, as per src/sys/kern/subr_pool.c r1.135dlg2014-07-021-1/+2
* info about pools is currently given to userland by copying eachdlg2014-07-021-9/+35
* Use VM_UVMEXP instead of VM_METER for memory usages and directlympi2014-04-081-2/+5
* unsigned char casts for ctypederaadt2013-11-261-2/+2
* remove unused variableschl2013-11-131-4/+2
* sometimes we find .h we no longer needderaadt2013-10-311-2/+1
* Obtain the uptime of the running system using the new CLOCK_UPTIME,guenther2013-10-081-25/+14
* Correct format string mismatches turned up by -Wformat=2guenther2013-08-221-2/+2
* There is no uvm_km_pages_free in our kernel anymore. The correspondingbluhm2013-07-181-5/+1
* Don't display swapin/swapout uvmexp fieldsmiod2013-05-141-3/+1
* i broke it. tailq is now simpleq in pool.tedu2013-03-261-4/+4
* remove rfork(); ok guenther miodderaadt2012-04-121-4/+4
* Make KERN_CPTIME return an avarage number of ticks across all CPUsmikeb2010-11-191-9/+1
* remove unused variablechl2010-08-011-2/+2
* Remove the VM_KMPAGESFREE sysctl. After the pmemrangethib2010-07-221-13/+1
* Remove setresguid since it is no longer needed.lum2010-07-201-17/+2
* don't repeat the banner if not a tty.tedu2009-11-221-3/+8
* rcsid[] and sccsid[] and copyright[] are essentially unmaintained (andderaadt2009-10-271-15/+1
* Use guaranteed 64-bit arithmetic for the name lookup statistics andnaddy2009-09-301-15/+13
* use (unsigned) in rate calculation for > 2 billion interrupts. This willderaadt2008-10-081-3/+3
* "InUse" is much more interesting than "Releases" for pools. ok beck@otto2008-09-081-4/+4
* use ellipsis to show that more than one disk is allowedsobrado2008-03-161-3/+3
* minor improvement on the diff to r1.106sobrado2007-12-301-3/+3
* change over last few bits to use sysctl(3) if possible, and make thisderaadt2007-12-151-35/+17
* patch to improve vmstat(8) output:sobrado2007-10-261-9/+9
* Use a sig_atomic_t instead of an int when setting it from a signal handlercloder2007-09-131-3/+4
* Fix error messages, okay ray@ deraadt@pedro2006-10-021-4/+4
* spacingderaadt2006-03-311-6/+6
* lint-driven cleanup. nothing too scary in this diff.deraadt2006-03-311-41/+37
* delint; from David Hillotto2006-03-131-13/+13
* remove unused variablemartin2006-02-231-4/+2
* namelist must be NULL terminated, plus some cleanup after mickeymartin2006-02-111-4/+4
* include uvm_km_pages_free into the pool accounting as it is the main consumer of it; feedback from millert@ and tedu@ okmickey2006-01-311-4/+34
* make -s print information about kmapent as well, reminded by deraadt@pedro2005-09-281-2/+3
* make these use setres[ug]id for simple privilege dropping;djm2005-07-041-10/+12
* print out fpu ctx switches countmickey2005-04-211-2/+3
* In vmstat -i, stop walking the kernel "allevents" evcnt chain, as they aremiod2004-12-241-25/+3
* Stop looking at intrcnt[] for vmstat -i; this means vmstat -i only worksmiod2004-11-281-76/+8
* use warn() instead of printf() + strerror()pedro2004-11-091-7/+5
* do not shrink the field width...deraadt2004-09-231-10/+10
* adapt to KERN_INTRCNT_CNT becoming a quad; ok tedu, and pulling in somederaadt2004-09-231-19/+25
* Do not divide by zero in vmstat -t; Nikos Ntarmos.miod2004-07-021-5/+8
* add -vz to usage();jmc2004-06-281-3/+3
* Remove special #if defined(__i386__) code from systat and vmstat. We now useaaron2004-06-281-100/+29