aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
Commit message (Expand)AuthorAgeFilesLines
* Add a facility allowing processes to inform the VM subsystem they areWes Peters2003-03-312-1/+17
* The object type can't be OBJT_PHYS in vm_mmap().Maxime Henrion2003-03-301-1/+1
* Obtain Giant before calling kmem_alloc without M_NOWAIT and before callingTor Egge2003-03-261-2/+21
* - Add vm_paddr_t, a physical address type. This is required for systemsJake Burkholder2003-03-259-29/+34
* Remove an empty comment.Maxime Henrion2003-03-191-4/+0
* Including <sys/stdint.h> is (almost?) universally only to be able to usePoul-Henning Kamp2003-03-183-3/+0
* Subtract the memory that backs the vm_page structures from phys_availJake Burkholder2003-03-171-4/+2
* Made the prototypes for pmap_kenter and pmap_kremove MD. These functionsJake Burkholder2003-03-161-2/+0
* - When the VM daemon is out of swap space and looking for aDavid Schultz2003-03-123-4/+23
* Zero copy send and receive fixes:Kenneth D. Merry2003-03-081-2/+9
* Remove ENABLE_VFS_IOOPT. It is a long unfinished work-in-progress.Alan Cox2003-03-066-398/+0
* Provide a mac_check_system_swapoff() entry point, which permits MACRobert Watson2003-03-051-0/+8
* Replace calls to WITNESS_SLEEP() and witness_list() with equivalent callsJohn Baldwin2003-03-041-1/+2
* NO_GEOM cleanup:Poul-Henning Kamp2003-03-021-5/+12
* Teach vm_page_sleep_if_busy() to release the vm_object lock before sleeping.Alan Cox2003-03-011-0/+9
* Fuse two #ifdefs with identical conditions.Alan Cox2003-02-251-3/+0
* - Add an interlock argument to BUF_LOCK and BUF_TIMELOCK.Jeff Roberson2003-02-251-1/+1
* Cleanup of the d_mmap_t interface.Maxime Henrion2003-02-252-8/+7
* In vm_page_dirty(), assert that the page is not in the free queue(s).Alan Cox2003-02-241-0/+2
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-196-13/+13
* Remove GIANT_REQUIRED from vm_pageq_remove().Alan Cox2003-02-161-1/+0
* Remove the acquisition and release of Giant around pmap_growkernel().Alan Cox2003-02-151-2/+0
* Move kernel_vm_end's declaration to pmap.h; add a comment regarding theAlan Cox2003-02-152-2/+5
* Add a comment describing how pagedaemon_wakeup() should be used andAlan Cox2003-02-091-0/+6
* Change a printf to also tell how many items were left in the zone.Poul-Henning Kamp2003-02-041-2/+2
* - It's more accurate to say that vm_paging_needed() returns TRUEAlan Cox2003-02-021-2/+3
* - Convert vm_pageout()'s tsleep()s to msleep()s with the page queue lock.Alan Cox2003-02-021-2/+5
* - Remove (some) unnecessary explicit initializations to zero.Alan Cox2003-02-011-8/+5
* - Convert the tsleep()s in vm_wait() and vm_waitpfault() to msleep()sAlan Cox2003-02-011-3/+10
* Simplify vm_object_page_remove(): The object's memq is now ordered. TheAlan Cox2003-01-271-62/+31
* Add MTX_DUPOK to the initialization of system map locks.Alan Cox2003-01-251-2/+2
* use 'void *' instead of 'caddr_t' for useracc, kernacc, vslock and vsunlock.Alfred Perlstein2003-01-212-8/+8
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-216-13/+13
* Fix swapping to a file, it was broken when SPECSTRATEGY was introduced.Matthew Dillon2003-01-201-1/+4
* Close the remaining user address mapping races for physicalMatthew Dillon2003-01-202-3/+20
* - Hold the page queues lock around vm_page_hold().Alan Cox2003-01-201-1/+2
* - M_WAITOK is 0 and not a real flag. Test for this properly.Jeff Roberson2003-01-201-5/+4
* Rev 1.16 renamed VM_METER to VM_TOTAL. This is breaking 3rd-party apps.David E. O'Brien2003-01-181-0/+1
* Merge all the various copies of vm_fault_quick() into a singleMatthew Dillon2003-01-161-0/+18
* - Update vm_pageout_deficit using atomic operations. It's a simpleAlan Cox2003-01-142-5/+3
* Make vm_pageout_page_free() static.Alan Cox2003-01-142-2/+2
* It is possible for an active aio to prevent shared memory from beingMatthew Dillon2003-01-131-0/+8
* We can get past here on a normal vnode as well, so use VOP_STRATEGY if so.Poul-Henning Kamp2003-01-131-1/+4
* Bow to the whining masses and change a union back into void *. RetainMatthew Dillon2003-01-131-1/+1
* Make vm_page_alloc() return PG_ZERO only if VM_ALLOC_ZERO is specified.Alan Cox2003-01-121-4/+5
* vm_fault_copy_entry() needn't clear PG_ZERO because it didn't passAlan Cox2003-01-121-3/+0
* Change struct file f_data to un_data, a union of the correct structMatthew Dillon2003-01-121-1/+1
* In vm_page_alloc(), fuse two if statements that are conditioned on the sameAlan Cox2003-01-111-8/+3
* Make 'sysctl vm.vmtotal' work properly using updated patch from Hiten.Matthew Dillon2003-01-112-3/+3
* In vm_page_alloc(), honor VM_ALLOC_ZERO for system and interrupt classAlan Cox2003-01-081-12/+5