aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
Commit message (Expand)AuthorAgeFilesLines
* Simplify vm_map_find/insert's interface: remove the MAP_COPY_NEEDED option.Alan Cox1999-05-143-11/+9
* Casting handles from void * to uintptr_t on the way to dev_t becameBruce Evans1999-05-131-3/+3
* Device pager's handle is dev_t not udev_t.Luoqi Chen1999-05-131-3/+3
* Fix a udev_t/dev_t mismatch which prevent paging from working.Poul-Henning Kamp1999-05-121-2/+2
* Divorce "dev_t" from the "major|minor" bitmap, which is now calledPoul-Henning Kamp1999-05-111-4/+4
* No point in swapdev being a static global when used only locally.Poul-Henning Kamp1999-05-091-2/+2
* I got tired of seeing all the cdevsw[major(foo)] all over the place.Poul-Henning Kamp1999-05-082-7/+7
* Continue where Julian left off in July 1998:Poul-Henning Kamp1999-05-071-4/+4
* Introduce two functions: physread() and physwrite() and use these directlyPoul-Henning Kamp1999-05-071-16/+2
* Add brackets to silence egcs and help clarity.Peter Wemm1999-05-061-3/+3
* remove b_proc from struct buf, it's (now) unused.Poul-Henning Kamp1999-05-063-14/+8
* Don't ignore mmap() address hint below the text section.Luoqi Chen1999-05-061-2/+4
* Add sysctl descriptions to many SYSCTL_XXXsBill Fumerola1999-05-031-7/+9
* The VFS/BIO subsystem contained a number of hacks in order to optimizeAlan Cox1999-05-026-22/+95
* s/static foo_devsw_installed = 0;/static int foo_devsw_installed;/.Dmitrij Tejblum1999-04-281-2/+2
* Suser() simplification:Poul-Henning Kamp1999-04-272-7/+6
* Make pmap_collect() an official pmap interface.Dmitrij Tejblum1999-04-232-3/+3
* unifdef -DVM_STACK - it's been on for a while for x86 and was checkedPeter Wemm1999-04-191-9/+3
* Move the declaration of faultin() from the vm headers to proc.h, sincePeter Wemm1999-04-131-2/+1
* StaticizeEivind Eklund1999-04-111-2/+2
* Convert usage of vm_page_bits() to the new convention ("Inputs are requiredDmitrij Tejblum1999-04-101-2/+2
* Lock vnode correctly for VOP_OPEN.Eivind Eklund1999-04-101-1/+5
* Don't forcibly kill processes that are locked in-core via PHOLD - it wasPeter Wemm1999-04-061-2/+3
* Only use p->p_lock (manage by PHOLD()/PRELE()) - P_NOSWAP/P_PHYSIO is noPeter Wemm1999-04-061-2/+2
* Catch a case spotted by Tor where files mmapped could leave garbage in theJulian Elischer1999-04-054-38/+157
* Two changes to vm_map_delete:Alan Cox1999-04-041-13/+10
* Mainly, eliminate the comments about share maps. (We don't have share mapsAlan Cox1999-03-271-33/+7
* Correct a comment.Eivind Eklund1999-03-271-2/+2
* Two changes:Alan Cox1999-03-211-19/+24
* Construct the free queue(s) in descending order (by physicalAlan Cox1999-03-191-2/+8
* Correct a problem in kmem_malloc: A kmem_malloc allowing "wait" mayAlan Cox1999-03-161-3/+5
* Two changes:Alan Cox1999-03-151-10/+5
* Fix breakage in last commitJulian Elischer1999-03-151-3/+3
* A bit of a hack, but allows the vn device to be a module again.Julian Elischer1999-03-141-1/+15
* Submitted by: Matt Dillon <dillon@freebsd.org>Julian Elischer1999-03-143-20/+406
* Correct two optimization errors in vm_object_page_remove:Alan Cox1999-03-141-3/+4
* Remove vm_page_frees from kmem_malloc that are performedAlan Cox1999-03-121-7/+1
* Stop the mfs from trying to swap out crucial bits of the mfsJulian Elischer1999-03-121-2/+2
* Remove (redundant) map timestamp increments from some properlyAlan Cox1999-03-091-6/+1
* Remove an unused variable from vmspace_fork.Alan Cox1999-03-081-3/+1
* Change vm_map_growstack to acquire and hold a read lock (instead of a writeAlan Cox1999-03-071-11/+17
* Upgrading a map's lock to exclusive status should incrementAlan Cox1999-03-061-2/+6
* To avoid a conflict for the vm_map's lock with vm_fault, releaseAlan Cox1999-03-021-4/+33
* Remove the last of the share map code: struct vm_map::is_main_map.Alan Cox1999-03-022-15/+10
* mincore doesn't modify the vm_map. Therefore, it doesn't requireAlan Cox1999-03-011-6/+6
* Reviewed by: "John S. Dyson" <dyson@iquest.net>Alan Cox1999-02-271-1/+20
* Reviewed by: Matthew Dillon <dillon@apollo.backplane.com>Alan Cox1999-02-251-2/+3
* Comment swstrategy() routine.Matthew Dillon1999-02-251-1/+9
* Remove unnecessary page protects on map_split and collapse operations.Matthew Dillon1999-02-243-6/+16
* Removed ENOMEM error on swap_pager_full condition which ignored theMatthew Dillon1999-02-221-4/+2