| Commit message (Expand) | Author | Age | Files | Lines |
* | contigmalloc1 (currently) depends on PQ_FREE and PQ_CACHE not being 0 | alc | 1999-08-15 | 1 | -2/+2 |
* | Add back in old definitions if we're compiling for alpha. | mjacob | 1999-08-15 | 1 | -1/+10 |
* | Don't create a "struct vpgqueues" for PQ_NONE. | alc | 1999-08-14 | 1 | -7/+7 |
* | vm_map_madvise: | alc | 1999-08-13 | 1 | -60/+85 |
* | The bdevsw() and cdevsw() are now identical, so kill the former. | phk | 1999-08-13 | 1 | -4/+4 |
* | Make the default page coloring parameters match a (non-Xeon) Pentium II/III. | alc | 1999-08-12 | 1 | -2/+8 |
* | vm_object_madvise: | alc | 1999-08-12 | 1 | -6/+16 |
* | vm_object_madvise: | alc | 1999-08-12 | 1 | -9/+11 |
* | contigmalloc1: | alc | 1999-08-11 | 1 | -7/+5 |
* | Add a contigfree() as a corollary to contigmalloc() as it's not clear | peter | 1999-08-10 | 1 | -1/+10 |
* | vm_map_madvise: | alc | 1999-08-10 | 1 | -17/+3 |
* | Merge the cons.c and cons.h to the best of my ability. alpha may or | phk | 1999-08-09 | 1 | -2/+2 |
* | Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>, | phk | 1999-08-08 | 2 | -7/+3 |
* | Move the memory access behavior information provided by madvise | alc | 1999-08-01 | 5 | -19/+34 |
* | Change the type of vpgqueues::lcnt from "int *" to "int". The indirection | alc | 1999-07-31 | 2 | -20/+18 |
* | vm_page_queue_init: | alc | 1999-07-31 | 1 | -9/+4 |
* | Reduce the number of "magic constants" used for page coloring | alc | 1999-07-22 | 1 | -7/+1 |
* | Fix the following problem: | alc | 1999-07-21 | 3 | -3/+8 |
* | Make a dev2budev() function, and use it. This refixes pstat (working, broken, | green | 1999-07-20 | 1 | -2/+2 |
* | Convert a "page not busy" warning to an assertion. | alc | 1999-07-20 | 1 | -7/+3 |
* | Add a field to struct swdevt to avoid a bogus udev2dev() call. | phk | 1999-07-17 | 1 | -2/+3 |
* | I have not one single time remembered the name of this function correctly | phk | 1999-07-17 | 1 | -2/+2 |
* | Remove vm_object::last_read. It is used by the old swap pager, but | alc | 1999-07-16 | 3 | -6/+3 |
* | Cleanup OBJ_ONEMAPPING management. | alc | 1999-07-11 | 2 | -15/+5 |
* | Change the data type used to represent page color in the vm_object | alc | 1999-07-10 | 1 | -2/+2 |
* | Remove unused function prototypes. | alc | 1999-07-10 | 1 | -3/+1 |
* | add unused argument to udev2dev() to make kernel compiled | ache | 1999-07-07 | 1 | -2/+2 |
* | Reinstate the previous fix for the broken export of a dev_t in sw_dev, convert | msmith | 1999-07-07 | 1 | -3/+3 |
* | Back out previous commit. It was wrong, and caused panics. | green | 1999-07-07 | 1 | -1/+1 |
* | swdevt should contain a udev_t not a devt. This resulted in bogus | msmith | 1999-07-06 | 1 | -2/+2 |
* | Reformat previous fix to remove an uglier than average goto. | mckay | 1999-07-05 | 1 | -9/+11 |
* | The buffer queue mechanism has been reformulated. Instead of having | mckusick | 1999-07-04 | 2 | -12/+12 |
* | Fix some int/long printf problems for the Alpha | peter | 1999-07-01 | 5 | -20/+23 |
* | Slight reorganization of kernel thread/process creation. Instead of using | peter | 1999-07-01 | 1 | -3/+4 |
* | Kirk missed a required BUF_KERNPROC(). Even though this is a non-async | peter | 1999-06-27 | 1 | -1/+2 |
* | Minor tweaks to make sure (new) prerequisites for <sys/buf.h> (mostly | peter | 1999-06-27 | 1 | -2/+3 |
* | There isn't much point waking up a daemon that hasn't existed since | peter | 1999-06-26 | 1 | -6/+2 |
* | Convert buffer locking from using the B_BUSY and B_WANTED flags to using | mckusick | 1999-06-26 | 4 | -18/+22 |
* | Remove (1) "extern" declarations for variables that were previously | alc | 1999-06-22 | 3 | -54/+5 |
* | Remove vm_object::cache_count and vm_object::wired_count. They are | alc | 1999-06-20 | 3 | -32/+3 |
* | Set cnt.v_page_size to PAGE_SIZE rather than DEFAULT_PAGE_SIZE so that | alc | 1999-06-20 | 2 | -5/+5 |
* | Remove some unused function and variable declarations. | alc | 1999-06-19 | 4 | -43/+4 |
* | vm_map_growstack uses vmspace::vm_ssize as though it contained | alc | 1999-06-17 | 1 | -6/+6 |
* | vm_map_insert sometimes extends an existing vm_map entry, rather than | alc | 1999-06-17 | 1 | -3/+7 |
* | Move vm_map_stack and vm_map_growstack after the definition | alc | 1999-06-17 | 1 | -204/+204 |
* | Remove some unused declarations and duplicate initialization. | alc | 1999-06-17 | 1 | -6/+2 |
* | vm_map_protect: | alc | 1999-06-12 | 1 | -2/+2 |
* | Add a function kmem_alloc_nofault() - same as kmem_alloc_pageable(), but | dt | 1999-06-08 | 2 | -2/+27 |
* | vm_mmap: | alc | 1999-06-05 | 1 | -3/+4 |
* | Shorten a detour around dev_t to get a udev_t created. | phk | 1999-06-01 | 1 | -3/+2 |