summaryrefslogtreecommitdiff
path: root/sys/vm/vnode_pager.c
Commit message (Expand)AuthorAgeFilesLines
* MFC r271586:Konstantin Belousov2014-09-211-10/+6
* The soft and hard busy mechanism rely on the vm object lock to work.Attilio Rao2013-08-091-2/+1
* - Correct a stale comment. We don't have vclean() anymore. The work isJeff Roberson2013-07-231-5/+0
* Assert that the object type for the vnode' non-NULL v_object, passedKonstantin Belousov2013-04-281-0/+6
* Convert panic() into KASSERT().Konstantin Belousov2013-04-281-2/+1
* Fix the logic inversion in the r248512.Konstantin Belousov2013-03-201-1/+1
* Pass unmapped buffers for page in requests if the filesystem indicated supportKonstantin Belousov2013-03-191-6/+30
* Some style fixes.Konstantin Belousov2013-03-141-1/+1
* Switch the vm_object mutex to be a rwlock. This will enable in theAttilio Rao2013-03-091-58/+59
* Remove white spaces.Attilio Rao2013-02-261-2/+2
* Wrap the sleeps synchronized by the vm_object lock into the specificAttilio Rao2013-02-261-2/+2
* The r241025 fixed the case when a binary, executed from nullfs mount,Konstantin Belousov2012-11-021-3/+3
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-221-9/+0
* Fix the mis-handling of the VV_TEXT on the nullfs vnodes.Konstantin Belousov2012-09-281-1/+1
* Do not leave invalid pages in the object after the short read for aKonstantin Belousov2012-08-141-1/+1
* After the PHYS_TO_VM_PAGE() function was de-inlined, the main reasonKonstantin Belousov2012-08-051-0/+1
* Reduce code duplication and exposure of direct access to structKonstantin Belousov2012-08-041-31/+2
* Do a more targeted check on the page cache and avoid to check the cacheAttilio Rao2012-06-161-1/+1
* The page flag PGA_WRITEABLE is set and cleared exclusively by the pmapAlan Cox2012-06-161-1/+1
* Keep track of the mount point associated with a special deviceKirk McKusick2012-03-281-0/+4
* Add KTR_VFS traces to track modifications to a vnode's writecount.John Baldwin2012-03-081-0/+6
* Account the writeable shared mappings backed by file in the vnodeKonstantin Belousov2012-02-231-0/+85
* Rename vm_page_set_valid() to vm_page_set_valid_range().Konstantin Belousov2011-11-301-2/+2
* Provide typedefs for the type of bit mask for the page bits.Konstantin Belousov2011-11-051-2/+3
* Fix a typo in a comment.John Baldwin2011-10-141-1/+1
* Split the vm_page flags PG_WRITEABLE and PG_REFERENCED into atomicKonstantin Belousov2011-09-061-1/+1
* Add a new option, OBJPR_NOTMAPPED, to vm_object_page_remove(). Passing thisAlan Cox2011-06-291-1/+1
* Fix a bug in r222586. Lock the page owner object around the modificationKonstantin Belousov2011-06-111-0/+6
* In the VOP_PUTPAGES() implementations, change the default error fromKonstantin Belousov2011-06-011-1/+18
* Minimize the use of the page queues lock for synchronizing access to theAlan Cox2010-06-021-2/+0
* Push down page queues lock acquisition in pmap_enter_object() andAlan Cox2010-05-261-18/+22
* Push down the page queues lock into vm_page_activate().Alan Cox2010-05-071-6/+9
* Eliminate page queues locking around most calls to vm_page_free().Alan Cox2010-05-061-18/+0
* On Alan's advice, rather than do a wholesale conversion on a singleKip Macy2010-04-301-26/+59
* Remove write-only variable.Konstantin Belousov2010-02-221-3/+0
* When a vnode-backed vm object is referenced, it increments the vnodeKonstantin Belousov2010-01-171-1/+6
* Change the type of uio_resid member of struct uio from int to ssize_t.Konstantin Belousov2009-06-251-1/+1
* Implement global and per-uid accounting of the anonymous memory. AddKonstantin Belousov2009-06-231-3/+4
* Correct a boundary case error in the management of a page's dirty bits byAlan Cox2009-06-021-10/+16
* Eliminate unnecessary clearing of the page's dirty mask from variousAlan Cox2009-05-151-5/+6
* Eliminate gratuitous clearing of the page's dirty mask.Alan Cox2009-05-121-1/+2
* Fix a race involving vnode_pager_input_smlfs(). Specifically, in the caseAlan Cox2009-05-091-23/+10
* Eliminate vnode_pager_input_smlfs()'s pointless call to pmap_clear_modify().Alan Cox2009-05-041-3/+0
* Eliminate unnecessary calls to pmap_clear_modify(). Specifically, callingAlan Cox2009-04-251-2/+6
* Adjust some variables (mostly related to the buffer cache) that holdJohn Baldwin2009-03-091-2/+2
* Comment out the assertion from r188321. It is not valid for nfs.Konstantin Belousov2009-02-091-1/+1
* Eliminate OBJ_NEEDGIANT. After r188331, OBJ_NEEDGIANT's only use is by aAlan Cox2009-02-081-2/+0
* Do not sleep for vnode lock while holding map lock in vm_fault. Try toKonstantin Belousov2009-02-081-53/+0
* Assert that vnode is exclusively locked when its vm object is resized.Konstantin Belousov2009-02-081-0/+1
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-281-1/+1