| Commit message (Expand) | Author | Age | Files | Lines |
* | Replace the linear search in vm_map_findspace() with an O(log n) | alc | 2004-08-13 | 1 | -1/+2 |
* | The vm map lock is needed in vm_fault() after the page has been found, | tegge | 2004-08-12 | 1 | -1/+2 |
* | Revamp VM map wiring. | green | 2004-08-09 | 1 | -0/+14 |
* | Get rid of another lockmgr(9) consumer by using sx locks for the user | mux | 2004-07-30 | 1 | -2/+2 |
* | Simplify vmspace initialization. The bcopy() of fields from the old | alc | 2004-07-24 | 1 | -3/+0 |
* | Micro-optimize vmspace for 64-bit architectures: Colocate vm_refcnt and | alc | 2004-07-06 | 1 | -1/+1 |
* | Remove an unused field from the vmspace structure. | alc | 2004-06-26 | 1 | -2/+1 |
* | In cases where a file was resident in memory mmap(..., PROT_NONE, ...) | alc | 2004-04-24 | 1 | -1/+1 |
* | Remove advertising clause from University of California Regent's license, | imp | 2004-04-06 | 1 | -4/+0 |
* | Part 2 of rev 1.68. Update comment to match reality now that vm_endcopy | peter | 2004-03-12 | 1 | -1/+1 |
* | - Rename vm_map_clean() to vm_map_sync(). This better reflects the fact | alc | 2003-11-09 | 1 | -1/+1 |
* | Whitespace cleanup. | des | 2003-11-03 | 1 | -4/+4 |
* | Move pmap_resident_count() from the MD pmap.h to the MI pmap.h. | bms | 2003-10-06 | 1 | -0/+1 |
* | Part 2 of implementing rstacks: add the ability to create rstacks and | marcel | 2003-09-27 | 1 | -0/+2 |
* | Introduce MAP_ENTRY_GROWS_DOWN and MAP_ENTRY_GROWS_UP to allow for | marcel | 2003-08-30 | 1 | -0/+3 |
* | Reduce the size of the vm map (and by inclusion the vm space) on 64-bit | alc | 2003-08-13 | 1 | -1/+1 |
* | Add the mlockall() and munlockall() system calls. | bms | 2003-08-11 | 1 | -2/+24 |
* | Introduce vm_map_pmap_enter(). Presently, this is a stub calling the MD | alc | 2003-06-29 | 1 | -0/+2 |
* | Remove an unnecessary forward declaration. | alc | 2003-06-15 | 1 | -2/+1 |
* | - When the VM daemon is out of swap space and looking for a | das | 2003-03-12 | 1 | -0/+3 |
* | Remove ENABLE_VFS_IOOPT. It is a long unfinished work-in-progress. | alc | 2003-03-06 | 1 | -1/+0 |
* | Add a needed #include. | alc | 2003-01-01 | 1 | -0/+1 |
* | Implement a variant locking scheme for vm maps: Access to system maps | alc | 2002-12-31 | 1 | -0/+1 |
* | Fix a refcount race with the vmspace structure. In order to prevent | dillon | 2002-12-15 | 1 | -2/+2 |
* | o Update some comments. | alc | 2002-09-22 | 1 | -7/+9 |
* | Change struct vmspace->vm_shm from void * to struct shmmap_state *, this | alfred | 2002-07-22 | 1 | -1/+1 |
* | Remove caddr_t. | alfred | 2002-07-22 | 1 | -1/+1 |
* | o Add a "needs wakeup" flag to the vm_map for use by kmem_alloc_wait() | alc | 2002-07-11 | 1 | -0/+3 |
* | o Eliminate vmspace::vm_minsaddr. It's initialized but never used. | alc | 2002-06-25 | 1 | -5/+5 |
* | o Use vm_map_wire() and vm_map_unwire() in place of vm_map_pageable() and | alc | 2002-06-14 | 1 | -8/+0 |
* | o Remove an unnecessary call to vm_map_wakeup() from vm_map_unwire(). | alc | 2002-06-08 | 1 | -0/+2 |
* | o Add vm_map_unwire() for unwiring contiguous regions of either kernel | alc | 2002-06-07 | 1 | -0/+4 |
* | o Remove GIANT_REQUIRED from vm_map_zfini(), vm_map_zinit(), | alc | 2002-06-01 | 1 | -1/+8 |
* | o Revert a part of revision 1.66, contrary to what that commit message says, | alc | 2002-06-01 | 1 | -3/+8 |
* | o Replace the vm_map's hint by the root of a splay tree. By design, | alc | 2002-05-24 | 1 | -1/+3 |
* | o Header files shouldn't depend on options: Provide prototypes | alc | 2002-05-06 | 1 | -3/+0 |
* | o Move vm_freeze_copyopts() from vm_map.{c.h} to vm_object.{c,h}. It's plainly | alc | 2002-05-06 | 1 | -1/+0 |
* | o Condition the compilation of uiomoveco() and vm_uiomove() | alc | 2002-05-05 | 1 | -1/+3 |
* | o Remove dead and lockmgr()-specific debugging code. | alc | 2002-05-02 | 1 | -17/+0 |
* | Pass the caller's file name and line number to the vm_map locking functions. | alc | 2002-04-28 | 1 | -9/+24 |
* | o Introduce and use vm_map_trylock() to replace several direct uses | alc | 2002-04-28 | 1 | -0/+1 |
* | o Begin documenting the (existing) locking protocol on the vm_map | alc | 2002-04-27 | 1 | -6/+26 |
* | Remove an unused option, VM_FAULT_HOLD, to vm_fault(). | alc | 2002-04-17 | 1 | -1/+0 |
* | This is the first part of the new kernel memory allocator. This replaces | jeff | 2002-03-19 | 1 | -1/+0 |
* | Back out the modification of vm_map locks from lockmgr to sx locks. The | green | 2002-03-18 | 1 | -20/+10 |
* | Rename SI_SUB_MUTEX to SI_SUB_MTX_POOL to make the name at all accurate. | green | 2002-03-13 | 1 | -10/+20 |
* | - Remove a number of extra newlines that do not belong here according to | eivind | 2002-03-10 | 1 | -6/+2 |
* | Fix a race with free'ing vmspaces at process exit when vmspaces are | alfred | 2002-02-05 | 1 | -0/+2 |
* | Don't let pmap_object_init_pt() exhaust all available free pages | dillon | 2001-10-31 | 1 | -0/+1 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -1/+1 |