aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_object.c
Commit message (Expand)AuthorAgeFilesLines
* Replace pointer to "struct uidinfo" with pointer to "struct ucred"Edward Tomasz Napierala2010-12-021-16/+16
* After the sleep caused by encountering a busy page, relookup the page.Konstantin Belousov2010-11-241-1/+3
* Eliminate the mab, maf arrays and related variables.Konstantin Belousov2010-11-211-32/+15
* Optimize vm_object_terminate().Alan Cox2010-11-201-9/+28
* The runlen returned from vm_pageout_flush() might be zero legitimately,Konstantin Belousov2010-11-201-1/+0
* vm_pageout_flush() might cache the pages that finished write to theKonstantin Belousov2010-11-181-24/+3
* Only increment object generation count when inserting the page intoKonstantin Belousov2010-11-181-7/+0
* Several cleanups for the r209686:Konstantin Belousov2010-07-041-13/+6
* Reimplement vm_object_page_clean(), using the fact that vm object memqKonstantin Belousov2010-07-041-189/+73
* Introduce a helper function vm_page_find_least(). Use it in several places,Konstantin Belousov2010-07-041-14/+2
* Roughly half of a typical pmap_mincore() implementation is machine-Alan Cox2010-05-241-29/+6
* Add a comment about the proper use of vm_object_page_remove().Alan Cox2010-05-161-1/+2
* Push down the page queues into vm_page_cache(), vm_page_try_to_cache(), andAlan Cox2010-05-081-14/+1
* Eliminate acquisitions of the page queues lock that are no longer needed.Alan Cox2010-05-071-9/+2
* Eliminate page queues locking around most calls to vm_page_free().Alan Cox2010-05-061-2/+0
* Acquire the page lock around all remaining calls to vm_page_free() onAlan Cox2010-05-051-4/+0
* Correct an error in r207410: Remove an unlock of a lock that is no longerAlan Cox2010-05-021-1/+0
* push up dropping of the page queue lock to avoid holding it in vm_pageout_flushKip Macy2010-04-301-29/+17
* don't call vm_pageout_flush with the page queue mutex heldKip Macy2010-04-301-0/+2
* On Alan's advice, rather than do a wholesale conversion on a singleKip Macy2010-04-301-12/+77
* Change vm_object_madvise() so that it checks whether the page is invalidAlan Cox2010-04-281-10/+6
* There is no justification for vm_object_split() setting PG_REFERENCED on aAlan Cox2010-04-181-1/+0
* In vm_object_madvise() setting PG_REFERENCED on a page before sleeping onAlan Cox2010-04-171-2/+9
* In vm_object_backing_scan(), setting PG_REFERENCED on a page beforeAlan Cox2010-04-171-3/+0
* VI_OBJDIRTY vnode flag mirrors the state of OBJ_MIGHTBEDIRTY vm objectKonstantin Belousov2009-12-211-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