aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_object.c
Commit message (Expand)AuthorAgeFilesLines
* - Use vm_object_reference_locked() directly fromJeff Roberson2008-03-291-15/+2
* Correct a long-standing error in vm_object_page_remove(). Specifically,Alan Cox2008-02-261-6/+25
* Correct a long-standing error in vm_object_deallocate(). Specifically,Alan Cox2008-02-241-1/+4
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-1/+1
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-1/+1
* Add the superpage reservation system. This is "part 2 of 2" of theAlan Cox2007-12-291-0/+45
* Prevent the leakage of wired pages in the following circumstances:Alan Cox2007-11-171-1/+13
* The previous revision, updating vm_object_page_remove() for the new pageAlan Cox2007-10-181-1/+2
* Correct an error of omission in the reimplementation of the pageAlan Cox2007-09-271-2/+4
* Correct an error in the previous revision, specifically,Alan Cox2007-09-251-1/+2
* Change the management of cached pages (PQ_CACHE) in two fundamentalAlan Cox2007-09-251-14/+30
* Enable the new physical memory allocator.Alan Cox2007-06-161-33/+3
* Optimize vmmeter locking.Attilio Rao2007-06-101-1/+1
* Do proper "locking" for missing vmmeters part.Attilio Rao2007-06-041-1/+1
* Revert VMCNT_* operations introduction.Attilio Rao2007-05-311-1/+1
* - define and use VMCNT_{GET,SET,ADD,SUB,PTR} macros for manipulatingJeff Roberson2007-05-181-1/+1
* Prevent a race between vm_object_collapse() and vm_object_split() fromAlan Cox2007-03-271-0/+8
* Change the order of lock reacquisition in vm_object_split() in order toAlan Cox2007-03-221-2/+5
* Use pause() in vm_object_deallocate() to yield the CPU to the lock holderJohn Baldwin2007-02-271-1/+1
* Change the way that unmanaged pages are created. Specifically,Alan Cox2007-02-251-3/+4
* Change the page's CLEANCHK flag from being a page queue mutex synchronizedAlan Cox2007-02-221-15/+15
* Use FOREACH_PROC_IN_SYSTEM instead of using its unrolled form.Xin LI2007-01-171-1/+1
* Optimize vm_object_split(). Specifically, make the number of iterationsAlan Cox2006-12-171-9/+14
* Simplify the computation of the new object's size in vm_object_split().Alan Cox2006-12-161-3/+2
* The page queues lock is no longer required by vm_page_busy() orAlan Cox2006-10-221-2/+0
* Replace PG_BUSY with VPO_BUSY. In other words, changes to the page'sAlan Cox2006-10-221-7/+7
* Add _vm_stats and _vm_stats_misc to the sysctl declarations in sysctl.h andAlan Cox2006-08-211-1/+0
* Reimplement the page's NOSYNC flag as an object-synchronized instead of aAlan Cox2006-08-131-4/+4
* Introduce a field to struct vm_page for storing flags that areAlan Cox2006-08-091-4/+6
* When sleeping on a busy page, use the lock from the containing objectAlan Cox2006-08-031-6/+6
* Complete the transition from pmap_page_protect() to pmap_remove_write().Alan Cox2006-08-011-3/+3
* Export the number of object bypasses and collapses through sysctl.Alan Cox2006-07-221-0/+8
* Eliminate OBJ_WRITEABLE. It hasn't been used in a long time.Alan Cox2006-07-211-4/+3
* Ensure that vm_object_deallocate() doesn't dereference a stale objectAlan Cox2006-07-171-6/+13
* Eliminate a deadlock when creating snapshots. Blocking vn_start_write() mustTor Egge2006-03-021-0/+3
* Lock the vm_object while checking its type to see if it is a vnode-backedJohn Baldwin2006-02-211-11/+25
* - Install a temporary bandaid in vm_object_reference() that will stopJeff Roberson2006-02-011-5/+5
* Use the new macros abstracting the page coloring/queues implementation.Alan Cox2006-01-271-4/+4
* - Avoid calling vm_object_backing_scan() when collapsing an object whenJeff Roberson2006-01-251-1/+3
* Make vm_object_vndeallocate() static. The external calls to it wereAlan Cox2006-01-221-1/+2
* MI changes:Alexander Leidinger2005-12-311-11/+8
* Eliminate unneeded preallocation at initialization.Alan Cox2005-12-031-2/+0
* Use of the ZERO_COPY_SOCKETS options can result in an unusual state thatAlan Cox2005-10-221-4/+12
* Don't allow pagedaemon to skip pages while scanning PQ_ACTIVE or PQ_INACTIVETor Egge2005-08-101-0/+5
* - We need to inhert the OBJ_NEEDGIANT flag from the original object inJeff Roberson2005-05-041-0/+1
* - Add a new object flag "OBJ_NEEDSGIANT". We set this flag if theJeff Roberson2005-05-031-0/+1
* Eliminate (now) unnecessary acquisition and release of the global pageAlan Cox2005-03-301-5/+1
* - Don't lock the vnode interlock in vm_object_set_writeable_dirty() ifJeff Roberson2005-03-171-2/+4
* Update the text of an assertion to reflect changes made in revision 1.148.Alan Cox2005-01-301-5/+1
* - Remove GIANT_REQUIRED where giant is no longer required.Jeff Roberson2005-01-241-7/+11