| Commit message (Expand) | Author | Age | Files | Lines |
* | In hash{free,init}(), there's no need to calculate the size of the hash table if |  anton | 2018-04-29 | 1 | -5/+11 |
* | Convert most of the manual checks for CPU hogging to sched_pause(). |  mpi | 2017-02-14 | 1 | -4/+2 |
* | introduce hashfree() function to free hash tables, with sizes. |  tedu | 2016-09-24 | 1 | -1/+15 |
* | Remove now unused legacy uiomovei() function. |  stefan | 2016-03-15 | 1 | -10/+1 |
* | Make sure uiomove does not copy more than uio_resid bytes, as the manual |  stefan | 2016-02-11 | 1 | -6/+8 |
* | Replace mountroothook_establish(9) by config_mountroot(9) a narrower API |  mpi | 2015-12-11 | 1 | -4/+2 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |
* | First step towards making uiomove() take a size_t size argument: |  miod | 2015-02-10 | 1 | -2/+11 |
* | retire shutdown hooks; ok deraadt, krw |  mikeb | 2014-12-10 | 1 | -4/+2 |
* | add a few sizes to free |  tedu | 2014-11-01 | 1 | -3/+3 |
* | trim some casts |  tedu | 2014-07-13 | 1 | -2/+2 |
* | use mallocarray where arguments are multipled. ok deraadt |  tedu | 2014-07-13 | 1 | -2/+2 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -3/+3 |
* | When hooks are called, allow them to disestablish themselves by using |  reyk | 2013-10-19 | 1 | -3/+3 |
* | Correct the handling of I/O of >=2^32 bytes and the ktracing there of |  guenther | 2013-09-14 | 1 | -6/+4 |
* | Switch time_t, ino_t, clock_t, and struct kevent's ident and data |  guenther | 2013-08-13 | 1 | -3/+5 |
* | remove the powerhook code. All architectures now use the ca_activate tree |  deraadt | 2010-09-07 | 1 | -71/+1 |
* | All PWR_{SUSPEND,RESUME} can now be replaced by DVACT_{SUSPEND,RESUME} |  deraadt | 2010-09-06 | 1 | -2/+2 |
* | Remove silly panic when disestablish cookie doesnt exist |  marco | 2008-06-12 | 1 | -2/+2 |
* | The world of __HAVEs and __HAVE_NOTs is reducing. All architectures |  art | 2007-05-16 | 1 | -5/+1 |
* | ansi/deregister. |  jsg | 2005-11-28 | 1 | -28/+12 |
* | mountroothooks are called after the root filesystem is mounted. |  deraadt | 2004-11-28 | 1 | -1/+3 |
* | debranch SMP, have fun |  niklas | 2004-06-13 | 1 | -1/+2 |
* | Merge in a piece of the SMP branch into HEAD. |  art | 2004-06-09 | 1 | -1/+6 |
* | allocate at least as much elements as requested in hashinit |  markus | 2003-10-31 | 1 | -6/+4 |
* | remove caddr_t casts. it's just silly to cast something when the function |  tedu | 2003-07-21 | 1 | -3/+3 |
* | Remove the advertising clause in the UCB license which Berkeley |  millert | 2003-06-02 | 1 | -6/+2 |
* | Remove fetch(9) and store(9) functions from the kernel, and replace the few |  miod | 2003-01-09 | 1 | -2/+6 |
* | - Add a flags argument to dohooks. |  art | 2002-07-12 | 1 | -9/+18 |
* | First round of __P removal in sys |  millert | 2002-03-14 | 1 | -4/+4 |
* | Startup hooks. Can be used for providing root/swap devices from device |  niklas | 2001-07-27 | 1 | -38/+37 |
* | remove old vm |  art | 2001-06-27 | 1 | -9/+1 |
* | Appease gcc by not using void pointers in arithmetic operations; art@ ok |  aaron | 2001-06-26 | 1 | -3/+3 |
* | Since malloc in hashinit can get M_NOWAIT flags, we should |  art | 2001-06-23 | 1 | -1/+3 |
* | On resume run the powerhook in installation order. |  art | 2000-09-07 | 1 | -3/+9 |
* | Put powerhooks on a CIRCLEQ instead of LIST. |  art | 2000-09-07 | 1 | -10/+9 |
* | Run powerhooks at splhigh. |  art | 2000-09-07 | 1 | -2/+2 |
* | Wrap power hooks in splimp(), fixes WaveLAN suspend problem; thanks art@ |  aaron | 2000-09-05 | 1 | -1/+4 |
* | Remove the roundrobin_attempts hack and replace it with per-process scheduling |  art | 2000-04-19 | 1 | -21/+3 |
* | If we attempted reschedule two times without suceeding, uiomove will yield, |  art | 2000-03-03 | 1 | -3/+28 |
* | add APM powerhooks. |  provos | 1999-11-07 | 1 | -1/+67 |
* | zap the newhashinit hack. |  art | 1999-04-28 | 1 | -10/+2 |
* | uvm uses kcopy when uiomoving from sysspace |  art | 1999-02-26 | 1 | -1/+10 |
* | Add newhashinit(), which is identical to hashinit() except it takes a flags |  millert | 1999-02-26 | 1 | -2/+10 |
* | Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned (size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * ... |  millert | 1998-07-28 | 1 | -3/+11 |
* | compile if iov_base is void * |  deraadt | 1998-05-11 | 1 | -2/+2 |
* | OpenBSD tags |  niklas | 1997-02-24 | 1 | -0/+1 |
* | partial sync with netbsd 960418, more to come |  deraadt | 1996-04-21 | 1 | -1/+1 |
* | Removed vax ifdefed function from kern_subr.c (from NetBSD). |  mickey | 1996-04-17 | 1 | -43/+0 |
* | initial import of NetBSD tree |  deraadt | 1995-10-18 | 1 | -0/+276 |