aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
Commit message (Expand)AuthorAgeFilesLines
* Removed redundant newlines that were in some panic strings.David Greenman1995-03-193-6/+6
* Incorporated 4.4-lite vnode_pager_uncache() and vnode_pager_umount()David Greenman1995-03-191-20/+22
* In vm_page_alloc_contig: Removed a redundant semicolon and used 'm' insteadDavid Greenman1995-03-181-3/+3
* Add and move declarations to fix all of the warnings from `gcc -Wimplicit'Bruce Evans1995-03-1613-27/+36
* Special cased the handling of mb_map in the M_WAITOK case. kmem_malloc()David Greenman1995-03-151-8/+10
* Move a kernel inline function inside `#ifdef KERNEL' so that includingBruce Evans1995-03-121-7/+7
* Fixed obsolete comment.David Greenman1995-03-122-4/+4
* Deleted vm_object_setpager().David Greenman1995-03-121-2/+1
* Deleted vm_object_setpager().David Greenman1995-03-122-24/+3
* Explicitly set object->flags = OBJ_CANPERSIST.David Greenman1995-03-121-3/+2
* Fix completely bogus comment.David Greenman1995-03-111-3/+3
* Clear OBJ_INTERNAL flag for device pager objects and named anonymousDavid Greenman1995-03-112-2/+4
* Set VAGE flag when pager is destroyed. This usually happens when anDavid Greenman1995-03-071-1/+2
* Fixed object reference count problem that occurred in the MAP_PRIVATEDavid Greenman1995-03-071-9/+29
* Don't attempt to reverse collapse non OBJ_INTERNAL objects.David Greenman1995-03-071-6/+19
* Remove a gratutious cast.Jordan K. Hubbard1995-03-041-2/+2
* Various changes from John and myself that do the following:David Greenman1995-03-0110-287/+238
* Slight change to include file order to accommodate upcoming changes.David Greenman1995-03-011-3/+4
* Don't use __P(()) in a function definition.Bruce Evans1995-02-251-2/+2
* Fixed severely broken printf (arguments out of order, no newline).David Greenman1995-02-251-3/+3
* Removed redundant HOLDRELE()'s.David Greenman1995-02-231-5/+1
* Changed return value from vnode_pager_addr to be in DEV_BSIZE units soDavid Greenman1995-02-221-7/+7
* vm_page.c:David Greenman1995-02-222-23/+16
* Just return in the case of a page not on any queue in vm_page_unqueue().David Greenman1995-02-221-3/+7
* Removed object locking code (it was a left over from an abortion thatDavid Greenman1995-02-221-41/+2
* Removed bogus copy object collapse check (the idea is right, but theDavid Greenman1995-02-221-145/+1
* Only do object paging_in_progress wakeups if someone is waiting on thisDavid Greenman1995-02-226-22/+70
* Rewrote MAP_PRIVATE case of vm_mmap() - all of the COW portion of thisDavid Greenman1995-02-221-52/+51
* Panic if u_map allocation fails.David Greenman1995-02-211-1/+3
* vm_extern.h: removed vm_allocate_with_pager.David Greenman1995-02-211-2/+1
* Deprecated remaining use of vm_deallocate. Deprecated vm_allocate_with_David Greenman1995-02-216-165/+108
* Set page alloced for map entries as valid.David Greenman1995-02-211-1/+2
* Removed vm_allocate(), vm_deallocate(), and vm_protect() functions. TheDavid Greenman1995-02-202-75/+2
* Moved ACT_MAX, ACT_ADVANCE, and ACT_DECLINE to vm_page.h.David Greenman1995-02-202-5/+6
* vm_inherit function has been deprecated.David Greenman1995-02-202-20/+2
* Stop using vm_allocate and vm_deallocate.David Greenman1995-02-201-3/+3
* VM for the kernel stack and page tables doesn't need to be explicitlyDavid Greenman1995-02-201-5/+2
* Panic if object is deallocated too many times.David Greenman1995-02-201-5/+7
* Don't allow act_count to exceed ACT_MAX when bumping it up.David Greenman1995-02-201-2/+4
* Fully initialize pages returned via vm_page_alloc_contig() so that theDavid Greenman1995-02-201-4/+13
* 1) Added protection against collapsing OBJ_DEAD objects.David Greenman1995-02-181-3/+8
* Don't bother calling pmap_create() when creating the temporary map.David Greenman1995-02-151-2/+2
* YF fix.Poul-Henning Kamp1995-02-142-7/+8
* YF Fix.Poul-Henning Kamp1995-02-141-3/+1
* Fixed problem with msync causing a panic.David Greenman1995-02-141-17/+19
* Carefully choose the value for vm_object_cache_max. The previous calculationDavid Greenman1995-02-121-2/+5
* Killed MACHVMCOMPAT function prototypes as the functions don't exist.David Greenman1995-02-091-5/+1
* Killed MACHVMCOMPAT code. It doesn't compile, and in its present stateDavid Greenman1995-02-091-100/+1
* Minor algorithmic adjustments that reduce the CPU consumption of theDavid Greenman1995-02-091-72/+12
* Fixed bmap run-length brokeness.David Greenman1995-02-031-62/+53