| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | o Lock some page queue accesses, in particular, those by vm_page_unwire(). | alc | 2002-07-13 | 2 | -1/+8 |
* | o Assert GIANT_REQUIRED on system maps in _vm_map_lock(), | alc | 2002-07-12 | 2 | -9/+6 |
* | Re-enable the idle page-zeroing code. Remove all IPIs from the idle | dillon | 2002-07-12 | 1 | -4/+0 |
* | Avoid a vm_page_lookup() - that uses a spinlock protected hash. We can | peter | 2002-07-12 | 1 | -2/+5 |
* | o Lock some (unfortunately, not yet all) accesses to the page queues. | alc | 2002-07-12 | 1 | -2/+2 |
* | o Lock accesses to the page queues. | alc | 2002-07-12 | 1 | -2/+3 |
* | o Add a "needs wakeup" flag to the vm_map for use by kmem_alloc_wait() | alc | 2002-07-11 | 3 | -6/+13 |
* | o Lock accesses to the page queues in vm_object_terminate(). | alc | 2002-07-09 | 1 | -1/+3 |
* | vm_page_queue_free_mtx is a spin mutex, not a normal sleep mutex. | peter | 2002-07-08 | 1 | -4/+4 |
* | Turn the zeroidle process off for SMP systems, there is still a possible | peter | 2002-07-08 | 1 | -0/+4 |
* | Add a special page zero entry point intended to be called via the single | peter | 2002-07-08 | 2 | -7/+10 |
* | Avoid vm_page_lookup() [grabs a spinlock] and just process the upage | peter | 2002-07-08 | 1 | -14/+9 |
* | Collect all the (now equivalent) pmap_new_proc/pmap_dispose_proc/ | peter | 2002-07-07 | 3 | -11/+154 |
* | o Lock accesses to the free queue(s) in vm_page_zero_idle(). | alc | 2002-07-07 | 1 | -0/+4 |
* | o Traverse the object's memq rather than repeatedly calling vm_page_lookup() | alc | 2002-07-07 | 1 | -5/+2 |
* | - Hold a lock on the vnode acquired from the file table across the call to | jeff | 2002-07-06 | 1 | -3/+14 |
* | Remove bogus vm_page_wakeup() in vm_page_cowfault() that will cause panics | gallatin | 2002-07-05 | 1 | -1/+0 |
* | Fix a lock order reversal in uma_zdestroy. The uma_mtx needs to be held across | jeff | 2002-07-05 | 1 | -4/+4 |
* | o Lock accesses to the free page queues in contigmalloc1(). | alc | 2002-07-05 | 1 | -0/+2 |
* | Remove unnecessary includes. | jeff | 2002-07-05 | 2 | -4/+0 |
* | o Resurrect vm_page_lock_queues(), vm_page_unlock_queues(), and the free | alc | 2002-07-04 | 2 | -5/+28 |
* | A small cleanup. | julian | 2002-07-04 | 1 | -1/+0 |
* | Don;t call teh thread setup routines from here.. | julian | 2002-07-04 | 1 | -1/+0 |
* | o Make the reservation of KVA space for kernel map entries a function | alc | 2002-07-03 | 1 | -1/+2 |
* | Actually use the fini callback. | jeff | 2002-07-03 | 1 | -0/+1 |
* | - Use (OFF_TO_IDX(off) - pi) instead of (OFF_TO_IDX(off - IDX_TO_OFF(pi))). | robert | 2002-07-01 | 1 | -5/+7 |
* | o Remove some long dead code: from revision 1.41 of vm/vm_pager.c | alc | 2002-07-01 | 2 | -22/+0 |
* | Change the type of `tscan' in vm_object_page_clean() to vm_pindex_t, | iedowse | 2002-06-29 | 1 | -1/+1 |
* | Part 1 of KSE-III | julian | 2002-06-29 | 5 | -55/+97 |
* | Avoid using the 64-bit vm_pindex_t in a few places where 64-bit | iedowse | 2002-06-26 | 3 | -16/+19 |
* | Use an explicit cast to avoid relying on sign extension to do the | iedowse | 2002-06-26 | 1 | -2/+2 |
* | At long last, commit the zero copy sockets code. | ken | 2002-06-26 | 5 | -5/+109 |
* | Enforce RLIMIT_VMEM on growable mappings (aka the primary stack or any | dillon | 2002-06-26 | 1 | -0/+14 |
* | Part I of RLIMIT_VMEM implementation. Implement core functionality for | dillon | 2002-06-26 | 2 | -0/+12 |
* | Complete the initial set of VM changes required to support full | iedowse | 2002-06-25 | 3 | -8/+8 |
* | Turn VM_ALLOC_ZERO into a flag. | jeff | 2002-06-25 | 2 | -5/+7 |
* | Reduce the amount of code that runs with the zone lock held in slab_zalloc(). | jeff | 2002-06-25 | 1 | -6/+8 |
* | o Eliminate vmspace::vm_minsaddr. It's initialized but never used. | alc | 2002-06-25 | 1 | -5/+5 |
* | o Remove GIANT_REQUIRED from kmem_alloc_pageable(), kmem_alloc_nofault(), | alc | 2002-06-23 | 1 | -7/+8 |
* | o Remove the unnecessary acquisition and release of Giant around fdrop() | alc | 2002-06-23 | 1 | -2/+3 |
* | o Reduce the scope of Giant in vm_mmap() to just the code that manipulates | alc | 2002-06-22 | 1 | -4/+2 |
* | o Replace mtx_assert(&Giant, MA_OWNED) in dev_pager_alloc() | alc | 2002-06-22 | 1 | -11/+17 |
* | o In vm_map_insert(), replace GIANT_REQUIRED by the acquisition and | alc | 2002-06-22 | 1 | -5/+6 |
* | o Replace GIANT_REQUIRED in swap_pager_alloc() by the acquisition and | alc | 2002-06-22 | 1 | -3/+4 |
* | o Remove GIANT_REQUIRED from phys_pager_alloc(). If handle isn't NULL, | alc | 2002-06-22 | 1 | -3/+8 |
* | o Replace GIANT_REQUIRED in vnode_pager_alloc() by the acquisition and | alc | 2002-06-22 | 1 | -6/+5 |
* | o Remove GIANT_REQUIRED from vslock(). | alc | 2002-06-22 | 1 | -1/+10 |
* | o Remove GIANT_REQUIRED from vm_map_stack(). | alc | 2002-06-21 | 1 | -2/+0 |
* | o Remove GIANT_REQUIRED from vm_pager_allocate() and vm_pager_deallocate(). | alc | 2002-06-21 | 1 | -3/+0 |
* | o Remove an incorrect cast from obreak(). This cast would, | alc | 2002-06-20 | 1 | -5/+5 |