aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
Commit message (Expand)AuthorAgeFilesLines
* Tidy up some loose ends.Peter Wemm2002-04-292-3/+0
* Document three synchronization issues in vm_fault().Alan Cox2002-04-291-0/+8
* Pass the caller's file name and line number to the vm_map locking functions.Alan Cox2002-04-282-20/+35
* o Introduce and use vm_map_trylock() to replace several direct usesAlan Cox2002-04-285-8/+14
* We do not necessarily need to map/unmap pages to zero parts of them.Peter Wemm2002-04-283-4/+14
* o Begin documenting the (existing) locking protocol on the vm_mapAlan Cox2002-04-272-25/+26
* o Control access to the vm_page_buckets with a mutex.Alan Cox2002-04-261-33/+17
* - Fix a round down bogon in uma_zone_set_max().Andrew R. Reiter2002-04-251-0/+2
* Reintroduce locking on accesses to vm_object_list.Alan Cox2002-04-203-1/+10
* o Move the acquisition of Giant from vm_fault() to the pointAlan Cox2002-04-191-12/+8
* Add a comment documenting a race condition in vm_fault(): Specifically, aAlan Cox2002-04-181-0/+3
* o Call vm_map_growstack() from vm_fault() if vm_map_lookup() has failedAlan Cox2002-04-181-1/+10
* Do not free the vmspace until p->p_vmspace is set to null. OtherwisePeter Wemm2002-04-171-3/+7
* Remove an unused option, VM_FAULT_HOLD, to vm_fault().Alan Cox2002-04-172-3/+0
* Pass vm_page_t instead of physical addresses to pmap_zero_page[_area]()Peter Wemm2002-04-154-28/+14
* Fix a witness warning when expanding a hash table. We were allocating the newJeff Roberson2002-04-141-38/+79
* Protect the initial list traversal in sysctl_vm_zone() with the uma_mtx.Jeff Roberson2002-04-141-0/+2
* Fix the calculation that determines uz_maxpages. It was off for large zones.Jeff Roberson2002-04-142-28/+53
* Remember to unlock the zone if the fill count is too high.Jeff Roberson2002-04-101-3/+4
* Quiet witness warnings about acquiring several zone locks. In the case thatJeff Roberson2002-04-081-1/+2
* Add a mechanism to disable buckets when the v_free_count drops belowJeff Roberson2002-04-081-6/+29
* Don't release the zone lock until after the dtor has been called. As far as IJeff Roberson2002-04-081-3/+3
* Implement uma_zdestroy(). It's prototype changed slightly. I decided that IJeff Roberson2002-04-082-30/+78
* Rework most of the bucket allocation and free code so that per cpu locks areJeff Roberson2002-04-082-215/+193
* Spelling correction; s/seperate/separate/gJeff Roberson2002-04-072-2/+2
* There should be no remaining references to these two files in the tree. IfJeff Roberson2002-04-072-631/+0
* This fixes a bug where isitem never got set to 1 if a certain chain of eventsJeff Roberson2002-04-071-0/+2
* o Eliminate the use of grow_stack() and useracc() from sendsig(), osendsig(),Alan Cox2002-04-051-1/+0
* Embed a struct vmmeter in the per-cpu structure and add a macro,Matthew Dillon2002-04-041-96/+129
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-0410-13/+16
* Fix a long standing 32bit-ism. Don't assume that the size of a chunk ofJake Burkholder2002-04-031-1/+1
* fix comment typo, s/neccisary/necessary/gAlfred Perlstein2002-04-021-2/+2
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-012-4/+4
* Add a new mtx_init option "MTX_DUPOK" which allows duplicate acquires of locksJeff Roberson2002-03-271-1/+1
* Remove an unused prototype.Alan Cox2002-03-261-1/+0
* Reset the cachefree statistics after draining the cache. This fixes a bugJeff Roberson2002-03-241-0/+4
* Add uma_zone_set_max() to add enforced limits to non vm obj backed zones.Jeff Roberson2002-03-202-10/+25
* Remove references to vm_zone.h and switch over to the new uma API.Jeff Roberson2002-03-2010-39/+30
* Remove __P.Alfred Perlstein2002-03-1917-213/+209
* Quit a warning introduced by UMA. This only occurs on machines whereJeff Roberson2002-03-191-1/+1
* Fix a gcc-3.1+ warning.Peter Wemm2002-03-191-0/+1
* This is the first part of the new kernel memory allocator. This replacesJeff Roberson2002-03-1912-94/+2865
* Back out the modification of vm_map locks from lockmgr to sx locks. TheBrian Feldman2002-03-186-104/+89
* Remove vm_object_count: It's unused, incorrectly maintained and duplicatesAlan Cox2002-03-171-4/+1
* Undo part of revision 1.57: Now that (o)sendsig() doesn't call useracc(),Alan Cox2002-03-171-13/+3
* Acquire a read lock on the map inside of vm_map_check_protection() ratherAlan Cox2002-03-172-4/+7
* Convert all pmap_kenter/pmap_kremove pairs in MI code to use pmap_qenter/Jake Burkholder2002-03-172-3/+4
* Introduce the new 64-bit size disk block, daddr64_t. ChangeKirk McKusick2002-03-151-2/+2
* Document faultstate.lookup_still_valid more than none.Brian Feldman2002-03-141-10/+14
* Rename SI_SUB_MUTEX to SI_SUB_MTX_POOL to make the name at all accurate.Brian Feldman2002-03-136-84/+95