| Commit message (Expand) | Author | Age | Files | Lines |
* | When OOM searches for a process to kill, ignore the processes already | kib | 2010-04-06 | 1 | -6/+15 |
* | Properly synchronize the previous change. | alc | 2009-11-28 | 1 | -0/+2 |
* | Support the new VM_PROT_COPY option on wired pages. The effect of which | alc | 2009-11-27 | 1 | -3/+6 |
* | Simplify the invocation of vm_fault(). Specifically, eliminate the flag | alc | 2009-11-27 | 1 | -8/+11 |
* | Replace VM_PROT_OVERRIDE_WRITE by VM_PROT_COPY. VM_PROT_OVERRIDE_WRITE has | alc | 2009-11-26 | 1 | -1/+1 |
* | Simplify both the invocation and the implementation of vm_fault() for wiring | alc | 2009-11-18 | 1 | -32/+13 |
* | Eliminate an unnecessary #include. (This #include should have been removed | alc | 2009-11-04 | 1 | -1/+0 |
* | Eliminate a bit of hackery from vm_fault(). The operations that this | alc | 2009-11-03 | 1 | -11/+0 |
* | Correct an error in vm_fault_copy_entry() that has existed since the first | alc | 2009-10-31 | 1 | -1/+1 |
* | When protection of wired read-only mapping is changed to read-write, | kib | 2009-10-27 | 1 | -16/+46 |
* | Simplify the inner loop of vm_fault_copy_entry(). | alc | 2009-10-26 | 1 | -13/+12 |
* | Eliminate an unnecessary check from vm_fault_prefault(). | alc | 2009-10-25 | 1 | -2/+2 |
* | Add a new type of VM object: OBJT_SG. An OBJT_SG object is very similar to | jhb | 2009-07-24 | 1 | -1/+2 |
* | When forking a vm space that has wired map entries, do not forget to | kib | 2009-07-03 | 1 | -10/+11 |
* | Implement global and per-uid accounting of the anonymous memory. Add | kib | 2009-06-23 | 1 | -1/+5 |
* | Eliminate unnecessary obfuscation when testing a page's valid bits. | alc | 2009-06-07 | 1 | -4/+3 |
* | Eliminate an incorrect comment. | alc | 2009-05-07 | 1 | -2/+0 |
* | Eliminate an archaic band-aid. The immediately preceding comment already | alc | 2009-04-26 | 1 | -5/+3 |
* | Allow valid pages to be mapped for read access when they have a non-zero | alc | 2009-04-19 | 1 | -1/+0 |
* | Prior to r188331 a map entry's last read offset was only updated by a hard | alc | 2009-02-25 | 1 | -3/+7 |
* | Avoid some cases of unnecessary page queues locking by vm_fault's delete- | alc | 2009-02-09 | 1 | -5/+11 |
* | Eliminate OBJ_NEEDGIANT. After r188331, OBJ_NEEDGIANT's only use is by a | alc | 2009-02-08 | 1 | -3/+0 |
* | Remove no longer valid comment. | kib | 2009-02-08 | 1 | -3/+0 |
* | Do not sleep for vnode lock while holding map lock in vm_fault. Try to | kib | 2009-02-08 | 1 | -43/+80 |
* | Style. | kib | 2009-02-08 | 1 | -0/+2 |
* | Simplify the inner loop of vm_fault()'s delete-behind heuristic. | alc | 2008-03-16 | 1 | -2/+2 |
* | Eliminate an unnecessary test from vm_fault's delete-behind heuristic. | alc | 2008-03-09 | 1 | -1/+1 |
* | Add an access type parameter to pmap_enter(). It will be used to implement | alc | 2008-01-03 | 1 | -3/+4 |
* | Add the superpage reservation system. This is "part 2 of 2" of the | alc | 2007-12-29 | 1 | -0/+13 |
* | Do not dereference NULL pointer. | kib | 2007-10-08 | 1 | -3/+2 |
* | Change the management of cached pages (PQ_CACHE) in two fundamental | alc | 2007-09-25 | 1 | -21/+8 |
* | Two changes to vm_fault_additional_pages(): | alc | 2007-07-20 | 1 | -19/+11 |
* | Eliminate the special case handling of OBJT_DEVICE objects in | alc | 2007-07-08 | 1 | -10/+0 |
* | When a cached page is reactivated in vm_fault(), update the counter that | alc | 2007-07-06 | 1 | -8/+10 |
* | Initialize reqpage to zero. | mjacob | 2007-06-17 | 1 | -1/+1 |
* | Rework the PCPU_* (MD) interface: | attilio | 2007-06-04 | 1 | -6/+6 |
* | - Move rusage from being per-process in struct pstats to per-thread in | jeff | 2007-06-01 | 1 | -9/+4 |
* | Revert VMCNT_* operations introduction. | attilio | 2007-05-31 | 1 | -2/+1 |
* | Eliminate the reactivation of cached pages in vm_fault_prefault() and | alc | 2007-05-22 | 1 | -3/+3 |
* | - define and use VMCNT_{GET,SET,ADD,SUB,PTR} macros for manipulating | jeff | 2007-05-18 | 1 | -1/+2 |
* | Fix a problem for file systems that don't implement VOP_BMAP() operation. | pjd | 2007-04-05 | 1 | -0/+2 |
* | vm_page_busy() no longer requires the page queues lock to be held. Reduce | alc | 2007-03-23 | 1 | -2/+2 |
* | Use PCPU_LAZY_INC() to update page fault statistics. | alc | 2007-03-05 | 1 | -6/+6 |
* | Make pmap_enter() responsible for setting PG_WRITEABLE instead | alc | 2006-11-12 | 1 | -7/+2 |
* | The page queues lock is no longer required by vm_page_wakeup(). | alc | 2006-10-23 | 1 | -3/+3 |
* | Replace PG_BUSY with VPO_BUSY. In other words, changes to the page's | alc | 2006-10-22 | 1 | -7/+8 |
* | Eliminate unnecessary PG_BUSY tests. They originally served a purpose | alc | 2006-10-21 | 1 | -1/+1 |
* | Reimplement the page's NOSYNC flag as an object-synchronized instead of a | alc | 2006-08-13 | 1 | -5/+5 |
* | Eliminate the acquisition and release of the page queues lock around a call | alc | 2006-08-06 | 1 | -4/+2 |
* | Retire debug.mpsafevm. None of the architectures supported in CVS require | alc | 2006-07-21 | 1 | -7/+1 |