| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | o Acquire and release the vm_map lock instead of Giant in obreak(). | alc | 2002-06-20 | 1 | -11/+7 |
* | - Move the computation of pflags out of the page allocation loop in | jeff | 2002-06-19 | 1 | -17/+21 |
* | - Remove bogus use of kmem_alloc that was inherited from the old zone | jeff | 2002-06-19 | 2 | -17/+18 |
* | Teach kmem_malloc about M_ZERO. | jeff | 2002-06-19 | 1 | -4/+10 |
* | o Replace GIANT_REQUIRED in vm_object_coalesce() by the acquisition and | alc | 2002-06-19 | 2 | -8/+10 |
* | o Remove LK_CANRECURSE from the vm_map lock. | alc | 2002-06-18 | 1 | -2/+2 |
* | Honor the BUCKETCACHE flag on free as well. | jeff | 2002-06-17 | 1 | -4/+9 |
* | - Introduce the new M_NOVM option which tells uma to only check the currently | jeff | 2002-06-17 | 4 | -4/+21 |
* | o Acquire and release Giant in vm_map_wakeup() to prevent | alc | 2002-06-17 | 1 | -0/+7 |
* | o Remove GIANT_REQUIRED from vm_fault_user_wire(). | alc | 2002-06-16 | 2 | -7/+1 |
* | o Remove GIANT_REQUIRED from useracc() and vsunlock(). Neither | alc | 2002-06-15 | 1 | -3/+4 |
* | o Remove the acquisition and release of Giant from munlock(). | alc | 2002-06-15 | 1 | -2/+0 |
* | o Use vm_map_wire() and vm_map_unwire() in place of vm_map_pageable() and | alc | 2002-06-14 | 6 | -414/+8 |
* | o Acquire and release Giant in vm_map_unlock_and_wait(). | alc | 2002-06-12 | 1 | -3/+5 |
* | o Properly handle a failure by vm_fault_wire() or vm_fault_user_wire() | alc | 2002-06-11 | 1 | -4/+20 |
* | o Teach vm_map_delete() to respect the "in-transition" flag | alc | 2002-06-11 | 1 | -0/+31 |
* | o In vm_map_entry_create(), call uma_zalloc() with M_NOWAIT on system maps. | alc | 2002-06-10 | 1 | -5/+6 |
* | Correct the logic for determining whether the per-CPU locks need | iedowse | 2002-06-10 | 1 | -1/+1 |
* | o Add vm_map_wire() for wiring contiguous regions of either kernel | alc | 2002-06-09 | 1 | -1/+159 |
* | o Simplify vm_map_unwire() by merging the second and third passes | alc | 2002-06-08 | 1 | -17/+11 |
* | o Remove an unnecessary call to vm_map_wakeup() from vm_map_unwire(). | alc | 2002-06-08 | 2 | -6/+17 |
* | o Add vm_map_unwire() for unwiring contiguous regions of either kernel | alc | 2002-06-07 | 2 | -1/+167 |
* | fix typo in _SYS_SYSPROTO_H_ case: s/mlockall_args/munlockall_args | alfred | 2002-06-06 | 1 | -1/+1 |
* | Add a comment describing a resource leak that occurs during a failure case | jeff | 2002-06-03 | 1 | -0/+3 |
* | o Migrate vm_map_split() from vm_map.c to vm_object.c, renaming it | alc | 2002-06-02 | 3 | -90/+93 |
* | o Style fixes to vm_map_split(), including the elimination of one variable | alc | 2002-06-02 | 1 | -8/+1 |
* | o Condition vm_object_pmap_copy_1()'s compilation on the kernel | alc | 2002-06-02 | 1 | -0/+2 |
* | o Remove GIANT_REQUIRED from vm_map_zfini(), vm_map_zinit(), | alc | 2002-06-01 | 2 | -25/+15 |
* | o Revert a part of revision 1.66, contrary to what that commit message says, | alc | 2002-06-01 | 2 | -17/+21 |