aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_page.c
Commit message (Expand)AuthorAgeFilesLines
...
* Strive for greater consistency among the places that implement real,Alan Cox2009-06-211-9/+8
* Add assertions in two places where a page's valid or dirty bits are changed.Alan Cox2009-05-301-0/+10
* Eliminate page queues locking from bufdone_finish() through theAlan Cox2009-05-131-0/+45
* Extend the struct vm_page wire_count to u_int to avoid the overflowKonstantin Belousov2009-01-031-1/+5
* Support kernel crash mini dumps on ARM architecture.Rafal Jaworowski2008-11-061-1/+1
* Move CTASSERT from header file to source file, per implementation note nowEd Maste2008-09-261-0/+7
* Work around differences in page allocation for initial page tables on xenKip Macy2008-08-171-0/+4
* Essentially, neither madvise(..., MADV_DONTNEED) nor madvise(..., MADV_FREE)Alan Cox2008-06-061-0/+7
* Don't call vm_reserv_alloc_page() on device-backed objects. Otherwise, theAlan Cox2008-05-151-1/+1
* Introduce vm_reserv_reclaim_contig(). This function is used byAlan Cox2008-04-061-1/+1
* Rename vm_pageq_requeue() to vm_page_requeue() on account of its recentAlan Cox2008-03-191-2/+2
* Almost seven years ago, vm/vm_page.c was split into three parts:Alan Cox2008-03-181-5/+74
* Defer setting either PG_CACHED or PG_FREE until after the free pageAlan Cox2008-01-021-2/+2
* Add the superpage reservation system. This is "part 2 of 2" of theAlan Cox2007-12-291-4/+49
* Modify vm_phys_unfree_page() so that it no longer requires the givenAlan Cox2007-12-201-2/+5
* Eliminate redundant code from vm_page_startup().Alan Cox2007-12-191-17/+0
* Simplify vm_page_free_toq().Alan Cox2007-12-111-5/+3
* Correct a comment.Alan Cox2007-12-021-1/+1
* When reactivating a cached page, reset the page's pool to the defaultAlan Cox2007-11-211-0/+1
* The intent of the freeing the (zeroed) page in vm_page_cache() forKonstantin Belousov2007-11-051-2/+5
* Change vm_page_cache_transfer() such that it does not transfer pagesAlan Cox2007-10-271-10/+20
* In the rare case that vm_page_cache() actually frees the given page,Alan Cox2007-10-081-10/+3
* Correct a lock assertion failure in sparc64's pmap_page_is_mapped() that isAlan Cox2007-10-071-1/+1
* Correct an error of omission in the reimplementation of the pageAlan Cox2007-09-271-15/+43
* Change the management of cached pages (PQ_CACHE) in two fundamentalAlan Cox2007-09-251-86/+271
* Add a counter for the total number of pages cached and support forAlan Cox2007-07-271-0/+1
* Eliminate two unused functions: vm_phys_alloc_pages() andAlan Cox2007-07-141-4/+4
* Correct a problem in the ZERO_COPY_SOCKETS option, specifically, inAlan Cox2007-07-101-2/+22
* Don't declare inline a function which isn't.Matt Jacob2007-06-171-1/+1
* If attempting to cache a "busy", panic instead of printing a diagnosticAlan Cox2007-06-161-2/+1
* Enable the new physical memory allocator.Alan Cox2007-06-161-54/+43
* Optimize vmmeter locking.Attilio Rao2007-06-101-7/+2
* Do proper "locking" for missing vmmeters part.Attilio Rao2007-06-041-3/+8
* Revert VMCNT_* operations introduction.Attilio Rao2007-05-311-36/+34
* - rename VMCNT_DEC to VMCNT_SUB to reflect the count argument.Jeff Roberson2007-05-201-1/+1
* - define and use VMCNT_{GET,SET,ADD,SUB,PTR} macros for manipulatingJeff Roberson2007-05-181-34/+36
* Define every architecture as either VM_PHYSSEG_DENSE orAlan Cox2007-05-051-0/+8
* Change the way that unmanaged pages are created. Specifically,Alan Cox2007-02-251-30/+2
* Enable vm_page_free() and vm_page_free_zero() to be called on some pagesAlan Cox2007-02-181-2/+4
* Remove a stale comment. Add punctuation to a nearby comment.Alan Cox2007-02-171-6/+1
* Relax the page queue lock assertions in vm_page_remove() andAlan Cox2007-02-151-2/+3
* Avoid the unnecessary acquisition of the free page queues lock when a pageAlan Cox2007-02-141-4/+5
* Use the free page queue mutex instead of the page queue mutex toAlan Cox2007-02-111-1/+1
* Change the pagedaemon, vm_wait(), and vm_waitpfault() to sleep on theAlan Cox2007-02-071-7/+9
* Change the free page queue lock from a spin mutex to a default (blocking)Alan Cox2007-02-051-9/+9
* Remove the requirement that phys_avail be sorted in ascending orderKip Macy2006-12-081-2/+10
* I misplaced the assertion that was added to vm_page_startup() in theAlan Cox2006-11-081-6/+6
* Simplify the construction of the free queues in vm_page_startup(). AddAlan Cox2006-11-081-2/+12
* The page queues lock is no longer required by vm_page_busy() orAlan Cox2006-10-221-3/+4
* Replace PG_BUSY with VPO_BUSY. In other words, changes to the page'sAlan Cox2006-10-221-18/+19