Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-29 | Do not test for processes being swapped out since this can't happen anymore. | Miod Vallat | |
2006-11-28 | add additional link states to report the half duplex / full duplex | Reyk Floeter | |
state, if known by the driver. this is required to check the full duplex state without depending on the ifmedia ioctl which can't be called in the kernel without process context. ok henning@, brad@ | |||
2006-11-13 | fix macro abuse leading to stray numbers in the vm display. | Otto Moerbeek | |
ok a whole lot of devs@ | |||
2006-10-15 | Talk about "memory" not "pages in kilobytes", it is less awkward | Todd C. Miller | |
that way. OK jmc@ deraadt@ | |||
2006-10-13 | vmstat memory stats are in kb, not number of pages; | Jason McIntyre | |
from jan srzednicki (freebsd pr #71690) ok mickey | |||
2006-06-29 | change bytes to kilobytes so i dont have to think about where megabytes | David Gwynne | |
start. | |||
2006-06-28 | update the `iostat' section; from deanna phillips | Jason McIntyre | |
ok dlg | |||
2006-06-28 | mark up a `>'; | Jason McIntyre | |
2006-06-28 | update the `ifstat' entry; | Jason McIntyre | |
based on a diff from deanna phillips, with some wording from dlg | |||
2006-06-27 | basically replace the iostat view with something that looks like the ifstat | David Gwynne | |
view. noone seemed particularly attached to the last one, so this is going in. from deanna phillips | |||
2006-06-02 | Show interface state and link state in ifstat output. Idea and OK dlg@ | Claudio Jeker | |
2006-05-26 | remove references to CRTs where they no longer make sense; | Jason McIntyre | |
tweaked by mickey/krw ok deraadt | |||
2006-05-09 | delay time of 0 should be invalid; evol@online.ptt.ru | Theo de Raadt | |
2006-04-14 | update the manpage to document interrupt cpu time in the vmstat view. | David Gwynne | |
prodded by deraadt@ | |||
2006-04-14 | remove comments that says we dont count intr time and remove some code that | David Gwynne | |
fudges the output to stay clean when intr time wasnt shown. not needed since we show it now. | |||
2006-04-14 | show cpu time spent in interrupts. ive been wanting this for years. | David Gwynne | |
tweaks by deraadt@ ok by many | |||
2006-04-12 | Improve error message. | Ray Lai | |
Found by Florin Iamandi <florin dot i at tiscali dot it>. OK tedu@ and deraadt@ | |||
2006-03-31 | spacing | Theo de Raadt | |
2006-03-31 | fairly simple cleanup, lots of testing done | Theo de Raadt | |
2006-03-28 | give more space to the memory columns in vm page; deraadt@ ok | Michael Shalayeff | |
2006-02-01 | double semicolon; from Daniel Matic in PR 4929 | Otto Moerbeek | |
2006-01-16 | remove Xr to self from SEE ALSO; | Jason McIntyre | |
2006-01-15 | - add descriptions for 'pzidle' and 'kmapent' fields in vmstat display. | Niall O'Higgins | |
ok jmc@ | |||
2006-01-10 | fix the time view of the interface stats so that is shows the average | David Gwynne | |
over the refresh interval (like the manpage says it should) instead of the total. ok markus@ | |||
2005-12-13 | sdl->sdl_data does not contain a nul terminated string, so use bcopy and | David Gwynne | |
terminate it manually rather than use strlcpy to get the interface name. fixes output on my sparc and sparc64s. ok markus@ deraadt@ | |||
2005-10-17 | Use queue macros instead of directly accessing fields. ok pat@ "put it | Otto Moerbeek | |
in" deraadt@ | |||
2005-09-28 | - when we run out of static kernel map entries, grab a fresh page using | Pedro Martelletto | |
the uvm_km_page allocator and use it instead of calling panic() - add a counter to uvmexp so we can keep track of how many map entries we have in use idea from tedu@, long ago, okay deraadt@ | |||
2005-09-06 | make some of the stat utility pages reference each other; | Jason McIntyre | |
idea from a mail to misc@ from simon dassow; | |||
2005-08-01 | Send ourselves SIGTSTP, not SIGSTOP on ^Z. Noticed and OK deraadt@ | Todd C. Miller | |
2005-07-04 | make these use setres[ug]id for simple privilege dropping; | Damien Miller | |
ok deraadt@ millert@ moritz@ | |||
2005-05-10 | correct v6 handling; yanovich@psc.edu | Theo de Raadt | |
2005-04-04 | nlist.h not needed | Theo de Raadt | |
2005-03-13 | Use correct byte order when printing out port numbers. | Chad Loder | |
OK jaredy@, tdeval@, hshoexer@ | |||
2004-11-25 | fix on alpha. the lack of BWX by default, and assumptions of alignment | Theo de Raadt | |
keep biting us hard for structures that happen to have been plopped at unaligned objects. terrible decisions made at DEC ages ago, and compounded by terrible gcc decisions cause us to make workarounds all the time. showed by markus, found by David Berghoff | |||
2004-11-16 | shuffle the .Pp; | Jason McIntyre | |
2004-11-16 | print network interface stats with 'systat ifstat'; ok deraadt, mickey | Markus Friedl | |
2004-09-29 | always compile in INET6 support | Theo de Raadt | |
2004-09-23 | adapt to KERN_INTRCNT_CNT returning a quad, from danh (imported now to | Theo de Raadt | |
avoid tree breakage) | |||
2004-07-11 | prototypes; ok deraadt | Peter Valchev | |
2004-07-09 | post-mortem stuff can go away here too | Theo de Raadt | |
2004-07-09 | remove post-mortem stuff (sysctl only here) | Theo de Raadt | |
2004-07-03 | move sysctl comment on namelist[] entry | Theo de Raadt | |
2004-06-28 | Remove special #if defined(__i386__) code from systat and vmstat. We now use | Aaron Campbell | |
sysctl to fetch interrupt counters on all architectures. Also add new '-z' flag to vmstat which means show all devices, even those that have not yet generated an interrupt. deraadt@ tholo@ drahn@ millert@ ok | |||
2004-06-11 | divide etime by ncpu | Theo de Raadt | |
2004-06-11 | oops | Theo de Raadt | |
2004-06-11 | on i386 machines, attempt to peek inside apic_intrhand[] as well, so that | Theo de Raadt | |
MP machines get interrupt counters. will be replaced by a MI subsystem one day. most code from drahn, few final bugs fixed by me | |||
2004-05-22 | with modern disks data transfers rates above 10000 kByte/s are seen | Henning Brauer | |
regularily, make the disk columns a little wider so it doesn't run into the neighboring column, theo ok | |||
2004-04-26 | add -n flag (do not reverse-lookup). pb and deraadt ok | Jun-ichiro itojun Hagino | |
2004-04-23 | don't print stats until they're stable, prevents seeing weird stuff in | Ted Unangst | |
disk columns. tested by jolan@. from pedro martelletto | |||
2004-04-14 | wakeup after ^Z did not continue redraws and such. use own ^Z handler. | Theo de Raadt | |
ok otto millert |