aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
Commit message (Expand)AuthorAgeFilesLines
* contigmalloc1 (currently) depends on PQ_FREE and PQ_CACHE not being 0Alan Cox1999-08-151-2/+2
* Add back in old definitions if we're compiling for alpha.Matt Jacob1999-08-151-1/+10
* Don't create a "struct vpgqueues" for PQ_NONE.Alan Cox1999-08-141-7/+7
* vm_map_madvise:Alan Cox1999-08-131-60/+85
* The bdevsw() and cdevsw() are now identical, so kill the former.Poul-Henning Kamp1999-08-131-4/+4
* Make the default page coloring parameters match a (non-Xeon) Pentium II/III.Alan Cox1999-08-121-2/+8
* vm_object_madvise:Alan Cox1999-08-121-6/+16
* vm_object_madvise:Alan Cox1999-08-121-9/+11
* contigmalloc1:Alan Cox1999-08-111-7/+5
* Add a contigfree() as a corollary to contigmalloc() as it's not clearPeter Wemm1999-08-101-1/+10
* vm_map_madvise:Alan Cox1999-08-101-17/+3
* Merge the cons.c and cons.h to the best of my ability. alpha may orPoul-Henning Kamp1999-08-091-2/+2
* Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>,Poul-Henning Kamp1999-08-082-7/+3
* Move the memory access behavior information provided by madviseAlan Cox1999-08-015-19/+34
* Change the type of vpgqueues::lcnt from "int *" to "int". The indirectionAlan Cox1999-07-312-20/+18
* vm_page_queue_init:Alan Cox1999-07-311-9/+4
* Reduce the number of "magic constants" used for page coloringAlan Cox1999-07-221-7/+1
* Fix the following problem:Alan Cox1999-07-213-3/+8
* Make a dev2budev() function, and use it. This refixes pstat (working, broken,Brian Feldman1999-07-201-2/+2
* Convert a "page not busy" warning to an assertion.Alan Cox1999-07-201-7/+3
* Add a field to struct swdevt to avoid a bogus udev2dev() call.Poul-Henning Kamp1999-07-171-2/+3
* I have not one single time remembered the name of this function correctlyPoul-Henning Kamp1999-07-171-2/+2
* Remove vm_object::last_read. It is used by the old swap pager, butAlan Cox1999-07-163-6/+3
* Cleanup OBJ_ONEMAPPING management.Alan Cox1999-07-112-15/+5
* Change the data type used to represent page color in the vm_objectAlan Cox1999-07-101-2/+2
* Remove unused function prototypes.Alan Cox1999-07-101-3/+1
* add unused argument to udev2dev() to make kernel compiledAndrey A. Chernov1999-07-071-2/+2
* Reinstate the previous fix for the broken export of a dev_t in sw_dev, convertMike Smith1999-07-071-3/+3
* Back out previous commit. It was wrong, and caused panics.Brian Feldman1999-07-071-1/+1
* swdevt should contain a udev_t not a devt. This resulted in bogusMike Smith1999-07-061-2/+2
* Reformat previous fix to remove an uglier than average goto.Stephen McKay1999-07-051-9/+11
* The buffer queue mechanism has been reformulated. Instead of havingKirk McKusick1999-07-042-12/+12
* Fix some int/long printf problems for the AlphaPeter Wemm1999-07-015-20/+23
* Slight reorganization of kernel thread/process creation. Instead of usingPeter Wemm1999-07-011-3/+4
* Kirk missed a required BUF_KERNPROC(). Even though this is a non-asyncPeter Wemm1999-06-271-1/+2
* Minor tweaks to make sure (new) prerequisites for <sys/buf.h> (mostlyPeter Wemm1999-06-271-2/+3
* There isn't much point waking up a daemon that hasn't existed sincePeter Wemm1999-06-261-6/+2
* Convert buffer locking from using the B_BUSY and B_WANTED flags to usingKirk McKusick1999-06-264-18/+22
* Remove (1) "extern" declarations for variables that were previouslyAlan Cox1999-06-223-54/+5
* Remove vm_object::cache_count and vm_object::wired_count. They areAlan Cox1999-06-203-32/+3
* Set cnt.v_page_size to PAGE_SIZE rather than DEFAULT_PAGE_SIZE so thatAlan Cox1999-06-202-5/+5
* Remove some unused function and variable declarations.Alan Cox1999-06-194-43/+4
* vm_map_growstack uses vmspace::vm_ssize as though it containedAlan Cox1999-06-171-6/+6
* vm_map_insert sometimes extends an existing vm_map entry, rather thanAlan Cox1999-06-171-3/+7
* Move vm_map_stack and vm_map_growstack after the definitionAlan Cox1999-06-171-204/+204
* Remove some unused declarations and duplicate initialization.Alan Cox1999-06-171-6/+2
* vm_map_protect:Alan Cox1999-06-121-2/+2
* Add a function kmem_alloc_nofault() - same as kmem_alloc_pageable(), butDmitrij Tejblum1999-06-082-2/+27
* vm_mmap:Alan Cox1999-06-051-3/+4
* Shorten a detour around dev_t to get a udev_t created.Poul-Henning Kamp1999-06-011-3/+2