Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-08-04 | clear rings before freeing them | Theo de Raadt | |
2000-08-04 | KNF | Theo de Raadt | |
2000-08-03 | s/principal/priciple/; from netbsd | Michael Shalayeff | |
2000-07-19 | Many drivers use a timeout on ttrstrt, make this a generic interface. | Artur Grabowski | |
2000-07-17 | art, at least commit something which compiles! | Theo de Raadt | |
2000-07-17 | Don't wait for B_READ buffers on shutdown. | Artur Grabowski | |
From NetBSD. | |||
2000-07-17 | FORK_SHAREVM only works on non-UVM kernels. | Artur Grabowski | |
Pointed out by miod@ | |||
2000-07-12 | remove m_pulldown statistics, which is highly experimental | Jun-ichiro itojun Hagino | |
2000-07-10 | last change was not tested on VM systems | Theo de Raadt | |
2000-07-07 | The rfork sharing of vmspace is .. special and was broken with UVM. | Artur Grabowski | |
Add a new flag to fork1 - FORK_VMNOSTACK that shares all of the vmspace except the stack and use it for rfork. | |||
2000-07-07 | Make hzto return 0 for timeouts that should happen now or in the past. | Artur Grabowski | |
2000-07-07 | Be more paranoid about return values from hzto. | Artur Grabowski | |
2000-07-07 | Isn't code sharing great? | Artur Grabowski | |
poll had the same timeout problem as select. | |||
2000-07-07 | When select is awakened by a select collission, we need to recalculate | Artur Grabowski | |
the timeout. | |||
2000-07-06 | Change splsoftclock() to spllowersoftclock(). (art@ ok) | Hakan Olsson | |
2000-07-06 | Typo in comment and some cleanup of roundrobin. | Artur Grabowski | |
2000-07-06 | printf %s | Todd T. Fries | |
2000-07-05 | Stop sleeps from returning early (by up to a clock tick). | Paul Janzen | |
From FreeBSD: eventually, we should replace hzto() with something like tvtohz() as well. | |||
2000-06-27 | Slight optimization of wakeup. | Artur Grabowski | |
2000-06-25 | disable automatic crashdump when swap encryption is on | Niels Provos | |
2000-06-23 | remove obsolete vtrace guts; art@ | Michael Shalayeff | |
2000-06-22 | regen-vtrace | Michael Shalayeff | |
2000-06-22 | make vtrace always obsolte; art@ | Michael Shalayeff | |
2000-06-20 | timeout_add: Remove the right timeout when we see that it is on the list. | Artur Grabowski | |
2000-06-18 | Mark kernel threads as system processes. Make ps hide them by default, | Niklas Hallqvist | |
show them with -k. Do not try to show RSS based values for them as they mess up column alignment. vmstat -f now shows kernel threads separately from rforks too. | |||
2000-06-18 | Process ID 5 is now the crypto kernel thread. | Angelos D. Keromytis | |
2000-06-17 | initial import of tcfs. | Niels Provos | |
2000-06-16 | take MIN/MAX from param.h, okay theo@ | Niels Provos | |
2000-06-12 | update icmp6 name lookup code to conform to 05 draft. previous code | Jun-ichiro itojun Hagino | |
was 03/05 chimera. ping6: -n by default due to too many false error report due to too long reverse query delay. | |||
2000-06-08 | Add explicit inclusions of signalvar.h to files actually using syms defined | Niklas Hallqvist | |
there but relying on an indirect inclusion | |||
2000-06-07 | Allow passing an address to 'show malloc' and print out some information about | Artur Grabowski | |
that address. | |||
2000-06-07 | Change debug_malloc_print so that it can be called from ddb. | Artur Grabowski | |
2000-06-07 | Default type and size to -1. | Artur Grabowski | |
2000-06-06 | This code will not work without UVM. | Artur Grabowski | |
Add an #error instead of breaking while compiling. | |||
2000-06-06 | malloc debugging code. Enabled by option MALLOC_DEBUG. | Artur Grabowski | |
Make sure you read the docs (malloc(9)) before use. | |||
2000-06-06 | If the process is P_NOZOMBIE free it's resources in the reaper. | Artur Grabowski | |
Noone will wait for it (because noone is allowed to wait for it). | |||
2000-06-05 | No need to use curproc here. We already know who we are. | Artur Grabowski | |
2000-06-05 | Changes to exit handling. | Artur Grabowski | |
cpu_exit no longer frees the vmspace and u-area. This is now handled by a separate kernel thread "reaper". This is to avoid sleeping locks in the critical path of cpu_exit where we're not allowed to sleep. From NetBSD | |||
2000-05-19 | Add enable to history when enable command i used. Reported by itojun@ and ↵ | Mats O Jansson | |
David Brownlee <abs@mono.org>. -moj | |||
2000-05-08 | from art@: | Michael Shalayeff | |
in timeout_hardclock_update() check out if there is anything in the timeout queue before calculating the return value. thanks to Adam Rogoyski <rogoyski@cs.utexas.edu> for debugging and testing help. | |||
2000-05-06 | work around filleproc() vs exit1() race of p_rlimit | Theo de Raadt | |
2000-05-05 | Don't set filesize limit to infinity on exit. | Artur Grabowski | |
This is only needed in accounting and has to be done carefully because the limit structures are shared between processes. Found by Denis A. Doroshenko, analysed by Hannah Schroeter. | |||
2000-05-05 | Add limfree prototype to sys/recosurcevar.h. | Artur Grabowski | |
2000-05-01 | sys_semconfig goes foom | Theo de Raadt | |
2000-05-01 | sys_semconfig goes away | Theo de Raadt | |
2000-04-29 | ktrace(2) should not follow symbolic links; from FreeBSD | Todd C. Miller | |
2000-04-25 | Use CIRCLEQ_FOREACH | Constantine Sapuntzakis | |
2000-04-25 | non-O_NOFOLLOW error introduced by accident, this is fragile code.. | Theo de Raadt | |
2000-04-21 | see if there is any meaning under curproc before using &proc0 in ↵ | Michael Shalayeff | |
vfs_syncwait(); from art@ | |||
2000-04-21 | Change kernel-only open flag FNOSYMLINK to userland-visible O_NOFOLLOW; | Todd C. Miller | |
adapated from FreeBSD. Also change O_FSYNC to the more standard O_SYNC and document it. open(2) needs some real examples for proper usage, to come later. |