aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vnode_pager.c
Commit message (Expand)AuthorAgeFilesLines
* Catch up on r271387 and remove unused parameter fromGleb Smirnoff2015-03-301-1/+1
* Introduce vm_object_color() and use it in mmap(2) to set the color ofAlan Cox2015-03-211-0/+5
* o Enhance vm_pager_free_nonreq() function:Gleb Smirnoff2015-03-171-18/+8
* Provide a comment explaining r279688.Gleb Smirnoff2015-03-161-0/+8
* Fix function name in comment.Gleb Smirnoff2015-03-101-1/+1
* - In vnode_pager_generic_getpages() use different free counters forGleb Smirnoff2015-03-061-4/+13
* We already have "int i" in this scope.Gleb Smirnoff2014-11-241-1/+1
* Merge from projects/sendfile:Gleb Smirnoff2014-11-231-43/+122
* Use __func__ in KASSERTs, since the code is about to be moved to other place.Gleb Smirnoff2014-11-191-6/+3
* In vnode_pager_generic_getpages() vp->v_mount is dereferenced in theGleb Smirnoff2014-11-191-4/+2
* Collapse three contiguous comment blocks into one. Remove historicalGleb Smirnoff2014-11-181-8/+3
* Three improvements to vnode_pager_generic_getpages():Alan Cox2014-09-151-11/+13
* Provide the unique implementation for the VOP_GETPAGES() method usedKonstantin Belousov2014-09-151-0/+33
* Avoid an exclusive acquisition of the object lock on the expected executionAlan Cox2014-09-141-16/+2
* Fix mis-spelling of bits and types names in the vnode_pager_putpages().Konstantin Belousov2014-09-141-5/+5
* Remove unused arguments for VOP_GETPAGES(), VOP_PUTPAGES().Gleb Smirnoff2014-09-101-2/+2
* Rename global cnt to vm_cnt to avoid shadowing.Bryan Drewery2014-03-221-1/+2
* ANSIfy declarations.Gleb Smirnoff2014-01-201-32/+11
* 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