aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_object.c
Commit message (Expand)AuthorAgeFilesLines
* MFC r215469:Konstantin Belousov2010-11-261-7/+0
* MFC r215471:Konstantin Belousov2010-11-261-57/+20
* MFC r209686,r209702:Konstantin Belousov2010-11-191-196/+76
* MFC r209685:Konstantin Belousov2010-07-111-14/+2
* MFC r208159Alan Cox2010-05-231-1/+2
* MFC r207306Alan Cox2010-05-201-10/+6
* MFC elimination of several settings of PG_REFERENCED bit, that eitherKonstantin Belousov2010-05-131-6/+9
* MFC r200770:Konstantin Belousov2010-01-111-21/+5
* Add a new type of VM object: OBJT_SG. An OBJT_SG object is very similar toJohn Baldwin2009-07-241-0/+1
* Add support to the virtual memory system for configuring machine-Alan Cox2009-07-121-0/+31
* Eliminiate code duplication by calling vm_object_destroy()Konstantin Belousov2009-06-281-18/+4
* The bits set in a page's dirty mask are a subset of the bits set in itsAlan Cox2009-06-241-6/+6
* Implement global and per-uid accounting of the anonymous memory. AddKonstantin Belousov2009-06-231-3/+70
* Long, long ago in r27464 special case code for mapping device-backedAlan Cox2009-06-141-0/+49
* Change vm_object_page_remove() such that it clears the page's dirty bitsAlan Cox2009-05-281-1/+3
* Do not call vm_page_lookup() from the ddb routine, namely from "showKonstantin Belousov2009-04-231-19/+13
* Reduce the scope of the page queues lock in vm_object_page_remove().Alan Cox2009-02-211-1/+1
* Eliminate OBJ_NEEDGIANT. After r188331, OBJ_NEEDGIANT's only use is by aAlan Cox2009-02-081-4/+1
* Fix printing of KASSERT message missed in r163604.Robert Noland2008-12-211-1/+1
* Remove the struct thread unuseful argument from bufobj interface.Attilio Rao2008-10-101-1/+1
* Fill in a few sysctl descriptions.Tom Rhodes2008-08-031-2/+2
* One more whitespace nit.John Baldwin2008-07-301-2/+0
* A few more whitespace fixes.John Baldwin2008-07-301-1/+0
* Allow VM object creation in ufs_lookup. (If vfs.vmiodirenable is set)Stephan Uphoff2008-05-201-11/+25
* - 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