| Commit message (Expand) | Author | Age | Files | Lines |
* | o Remove the setting of PG_MAPPED from vm_page_wire() and | alc | 2002-08-03 | 1 | -2/+0 |
* | o Lock page queue accesses in nwfs and smbfs. | alc | 2002-08-02 | 1 | -1/+1 |
* | o Acquire the page queues lock before calling vm_page_io_finish(). | alc | 2002-08-01 | 1 | -1/+2 |
* | o Lock page accesses by vm_page_io_start() with the page queues lock. | alc | 2002-07-31 | 1 | -1/+2 |
* | o Introduce vm_page_sleep_if_busy() as an eventual replacement for | alc | 2002-07-29 | 1 | -0/+22 |
* | o Modify vm_page_grab() to accept VM_ALLOC_WIRED. | alc | 2002-07-28 | 1 | -0/+4 |
* | o Lock page queue accesses by vm_page_dontneed(). | alc | 2002-07-23 | 1 | -1/+1 |
* | o Lock page queue accesses by vm_page_try_to_cache(). (The accesses | alc | 2002-07-20 | 1 | -1/+1 |
* | o Assert that the page queues lock is held in vm_page_try_to_free(). | alc | 2002-07-20 | 1 | -0/+2 |
* | o Lock page queue accesses by vm_page_cache() in vm_fault() and | alc | 2002-07-20 | 1 | -1/+1 |
* | o Duplicate an odd side-effect of vm_page_wire() in vm_page_allocate() | alc | 2002-07-19 | 1 | -1/+2 |
* | o Introduce an argument, VM_ALLOC_WIRED, that requests vm_page_alloc() | alc | 2002-07-18 | 1 | -9/+10 |
* | o Lock page queue accesses by vm_page_wire() that aren't | alc | 2002-07-14 | 1 | -0/+3 |
* | o Lock page queue accesses by vm_page_unmanage(). | alc | 2002-07-13 | 1 | -0/+1 |
* | o Complete the locking of page queue accesses by vm_page_unwire(). | alc | 2002-07-13 | 1 | -1/+1 |
* | Remove bogus vm_page_wakeup() in vm_page_cowfault() that will cause panics | gallatin | 2002-07-05 | 1 | -1/+0 |
* | o Resurrect vm_page_lock_queues(), vm_page_unlock_queues(), and the free | alc | 2002-07-04 | 1 | -5/+23 |
* | At long last, commit the zero copy sockets code. | ken | 2002-06-26 | 1 | -0/+69 |
* | Turn VM_ALLOC_ZERO into a flag. | jeff | 2002-06-25 | 1 | -4/+6 |
* | o Convert the vm_page buckets mutex to a spin lock. (This resolves | alc | 2002-04-30 | 1 | -14/+11 |
* | We do not necessarily need to map/unmap pages to zero parts of them. | peter | 2002-04-28 | 1 | -0/+12 |
* | o Control access to the vm_page_buckets with a mutex. | alc | 2002-04-26 | 1 | -33/+17 |
* | Pass vm_page_t instead of physical addresses to pmap_zero_page[_area]() | peter | 2002-04-15 | 1 | -23/+9 |
* | Change callers of mtx_init() to pass in an appropriate lock type name. In | jhb | 2002-04-04 | 1 | -1/+2 |
* | Fix a long standing 32bit-ism. Don't assume that the size of a chunk of | jake | 2002-04-03 | 1 | -1/+1 |
* | This is the first part of the new kernel memory allocator. This replaces | jeff | 2002-03-19 | 1 | -0/+16 |
* | - Remove a number of extra newlines that do not belong here according to | eivind | 2002-03-10 | 1 | -72/+13 |
* | o Create vm_pageq_enqueue() to encapsulate code that is duplicated time | alc | 2002-03-04 | 1 | -18/+6 |
* | Add a page queue, PQ_HOLD, that temporarily owns pages with nonzero hold | tegge | 2002-02-19 | 1 | -3/+8 |
* | Add one more comment to the OOM changes so that future readers of | silby | 2002-02-19 | 1 | -0/+3 |
* | Changes to make the OOM killer much more effective: | silby | 2002-02-19 | 1 | -0/+23 |
* | This fixes a large number of bugs in our NFS client side code. A recent | dillon | 2001-12-14 | 1 | -0/+14 |
* | Implement kern.maxvnodes. adjusting kern.maxvnodes now actually has a | dillon | 2001-10-26 | 1 | -1/+1 |
* | Implement idle zeroing of pages. I've been tinkering with this | peter | 2001-08-25 | 1 | -0/+1 |
* | KASSERT if vm_page_t->wire_count overflows. | dillon | 2001-08-22 | 1 | -0/+1 |
* | - Remove asleep(), await(), and M_ASLEEP. | jhb | 2001-08-10 | 1 | -26/+0 |
* | Oops. Last commit to vm_object.c should have got these files too. | jake | 2001-07-31 | 1 | -6/+4 |
* | make vm_page_select_cache static | assar | 2001-07-23 | 1 | -1/+1 |
* | Reorg vm_page.c into vm_page.c, vm_pageq.c, and vm_contig.c (for contigmalloc). | dillon | 2001-07-04 | 1 | -413/+47 |
* | Change inlines back into mainline code in preparation for mutexing. Also, | dillon | 2001-07-04 | 1 | -110/+314 |
* | whitespace / register cleanup | dillon | 2001-07-04 | 1 | -28/+29 |
* | With Alfred's permission, remove vm_mtx in favor of a fine-grained approach | dillon | 2001-07-04 | 1 | -49/+28 |
* | This patch implements O_DIRECT about 80% of the way. It takes a patchset | dillon | 2001-05-24 | 1 | -0/+23 |
* | Sort includes. | jhb | 2001-05-22 | 1 | -1/+1 |
* | Introduce a global lock for the vm subsystem (vm_mtx). | alfred | 2001-05-19 | 1 | -62/+61 |
* | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | markm | 2001-05-01 | 1 | -1/+1 |
* | Unrevert the pmap_map() changes. They weren't broken on x86. | jhb | 2001-03-07 | 1 | -16/+9 |
* | Back out the pmap_map() change for now, it isn't completely stable on the | jhb | 2001-03-07 | 1 | -9/+16 |
* | - Rework pmap_map() to take advantage of direct-mapped segments on | jhb | 2001-03-06 | 1 | -16/+9 |
* | Allocate vm_page_array and vm_page_buckets from the end of the biggest chunk | gallatin | 2001-03-01 | 1 | -18/+16 |