| Commit message (Expand) | Author | Age | Files | Lines |
* | - Reduce Giant's scope in vm_fault(). | alc | 2003-12-26 | 1 | -14/+10 |
* | NFC: Update stale comments. | mini | 2003-11-10 | 1 | -1/+1 |
* | - vm_fault_copy_entry() should not assume that the source object contains | alc | 2003-10-15 | 1 | -5/+19 |
* | Lock the destination object in vm_fault_copy_entry(). | alc | 2003-10-08 | 1 | -2/+7 |
* | Retire vm_page_copy(). Its reason for being ended when peter@ modified | alc | 2003-10-08 | 1 | -2/+4 |
* | Synchronize access to a vm page's valid field using the containing | alc | 2003-10-04 | 1 | -4/+8 |
* | Migrate pmap_prefault() into the machine-independent virtual memory layer. | alc | 2003-10-03 | 1 | -1/+91 |
* | Add vm object locking to vnode_pager_lock(). (This triggers the movement | alc | 2003-09-18 | 1 | -1/+1 |
* | To implement the sequential access optimization, vm_fault() may need to | alc | 2003-08-23 | 1 | -8/+10 |
* | Maintain a lock on the vm object of interest throughout vm_fault(), | alc | 2003-06-22 | 1 | -10/+9 |
* | As vm_fault() descends the chain of backing objects, set paging-in- | alc | 2003-06-22 | 1 | -8/+8 |
* | Make some style and white-space changes to the copy-on-write path through | alc | 2003-06-22 | 1 | -10/+5 |
* | Lock one of the vm objects involved in an optimized copy-on-write fault. | alc | 2003-06-21 | 1 | -2/+5 |
* | The so-called "optimized copy-on-write fault" case should not require | alc | 2003-06-20 | 1 | -9/+2 |
* | Fix a vm object reference leak in the page-based copy-on-write mechanism | alc | 2003-06-19 | 1 | -1/+1 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -2/+4 |
* | Prefer the proc lock to sched_lock when testing PS_INMEM now that it is | jhb | 2003-04-22 | 1 | -3/+4 |
* | - Lock the vm_object when performing vm_object_pip_wakeup(). | alc | 2003-04-20 | 1 | -0/+10 |
* | - Lock the vm_object when performing vm_object_pip_add(). | alc | 2003-04-20 | 1 | -0/+4 |
* | - Add vm_paddr_t, a physical address type. This is required for systems | jake | 2003-03-25 | 1 | -2/+3 |
* | Zero copy send and receive fixes: | ken | 2003-03-08 | 1 | -2/+9 |
* | Remove ENABLE_VFS_IOOPT. It is a long unfinished work-in-progress. | alc | 2003-03-06 | 1 | -7/+0 |
* | Merge all the various copies of vm_fault_quick() into a single | dillon | 2003-01-16 | 1 | -0/+18 |
* | vm_fault_copy_entry() needn't clear PG_ZERO because it didn't pass | alc | 2003-01-12 | 1 | -3/+0 |
* | Reduce the number of times that we acquire and release the page queues | alc | 2002-12-29 | 1 | -2/+0 |
* | - Hold the page queues lock around calls to vm_page_flag_clear(). | alc | 2002-12-24 | 1 | -0/+2 |
* | - Hold the page queues lock when performing vm_page_busy() or | alc | 2002-12-19 | 1 | -1/+7 |
* | Now that pmap_remove_all() is exported by our pmap implementations | alc | 2002-11-16 | 1 | -2/+2 |
* | When prot is VM_PROT_NONE, call pmap_page_protect() directly rather than | alc | 2002-11-10 | 1 | -2/+2 |
* | Complete the page queues locking needed for the page-based copy- | alc | 2002-10-19 | 1 | -2/+2 |
* | o Retire pmap_pageable(). It's an advisory routine that none | alc | 2002-08-25 | 1 | -12/+0 |
* | o Retire vm_page_zero_fill() and vm_page_zero_fill_area(). Ever since | alc | 2002-08-25 | 1 | -1/+1 |
* | o Move a call to vm_page_wakeup() inside the scope of the page queues lock. | alc | 2002-08-10 | 1 | -1/+1 |
* | o Remove the setting and clearing of the PG_MAPPED flag. (This flag is | alc | 2002-08-10 | 1 | -2/+2 |
* | o Lock page queue accesses by vm_page_activate(). | alc | 2002-07-27 | 1 | -0/+6 |
* | o Merge vm_fault_wire() and vm_fault_user_wire() by adding a new parameter, | alc | 2002-07-24 | 1 | -49/+8 |
* | o Lock page queue accesses by vm_page_free() and vm_page_deactivate(). | alc | 2002-07-21 | 1 | -0/+12 |
* | o Lock page queue accesses by vm_page_cache() in vm_fault() and | alc | 2002-07-20 | 1 | -1/+2 |
* | o Lock some page queue accesses, in particular, those by vm_page_unwire(). | alc | 2002-07-13 | 1 | -1/+4 |
* | At long last, commit the zero copy sockets code. | ken | 2002-06-26 | 1 | -0/+14 |
* | o Remove GIANT_REQUIRED from vm_fault_user_wire(). | alc | 2002-06-16 | 1 | -5/+1 |
* | o Acquire and release Giant around pmap operations in vm_fault_unwire() | alc | 2002-05-26 | 1 | -1/+2 |
* | o Condition the compilation and use of vm_freeze_copyopts() | alc | 2002-05-06 | 1 | -1/+2 |
* | o Revert vm_fault1() to its original name vm_fault(), eliminating the wrapper | alc | 2002-04-30 | 1 | -16/+11 |
* | Document three synchronization issues in vm_fault(). | alc | 2002-04-29 | 1 | -0/+8 |
* | o Introduce and use vm_map_trylock() to replace several direct uses | alc | 2002-04-28 | 1 | -3/+1 |
* | o Move the acquisition of Giant from vm_fault() to the point | alc | 2002-04-19 | 1 | -12/+8 |
* | Add a comment documenting a race condition in vm_fault(): Specifically, a | alc | 2002-04-18 | 1 | -0/+3 |
* | o Call vm_map_growstack() from vm_fault() if vm_map_lookup() has failed | alc | 2002-04-18 | 1 | -1/+10 |
* | Remove an unused option, VM_FAULT_HOLD, to vm_fault(). | alc | 2002-04-17 | 1 | -2/+0 |