summaryrefslogtreecommitdiff
path: root/sys/vm/vnode_pager.c
Commit message (Expand)AuthorAgeFilesLines
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-1/+1
* fix commentPoul-Henning Kamp2004-12-251-1/+1
* Almost nine years ago, when support for 1TB files was introduced inAlan Cox2004-12-071-1/+1
* Correct a sanity check in vnode_pager_generic_putpages(). The cast usedAlan Cox2004-12-051-1/+1
* Make VOP_BMAP return a struct bufobj for the underlying storage devicePoul-Henning Kamp2004-11-151-10/+13
* Explicitly call pbrelvp()Poul-Henning Kamp2004-11-151-0/+2
* Move a call to wakeup() from vm_object_terminate() to vnode_pager_dealloc()Alan Cox2004-11-061-0/+5
* Also check that the sectormask is bigger than zero.Poul-Henning Kamp2004-10-261-1/+3
* Put the I/O block size in bufobj->bo_bsize.Poul-Henning Kamp2004-10-261-1/+1
* Move the buffer method vector (buf->b_op) to the bufobj.Poul-Henning Kamp2004-10-241-8/+2
* add KASSERTSPoul-Henning Kamp2004-09-071-0/+2
* Acquire and release Giant around a call to VOP_BMAP(). (This is aAlan Cox2004-08-191-0/+2
* Make vm_page's PG_ZERO flag immutable between the time of the page'sAlan Cox2004-05-061-3/+0
* Push down Giant into vm_pager_get_pages(). The only get pages methods thatAlan Cox2004-04-231-0/+2
* Eliminate vm_pager_map_page() and vm_pager_unmap_page() and their uses.Alan Cox2004-04-061-10/+12
* Eliminate the acquisition and release of Giant from vnode_pager_alloc().Alan Cox2004-01-041-2/+0
* In vnode_pager_input_smlfs(), call VOP_STRATEGY instead of VOP_SPECSTRATEGYTim J. Robbins2003-11-151-1/+4
* - Call vnode_pager_input_old() with the vm object locked.Alan Cox2003-10-251-5/+6
* - Push down Giant from vm_pageout() to vm_pageout_scan(), freeingAlan Cox2003-10-241-0/+2
* - Hold the vm object's lock around calls to vm_page_set_validclean().Alan Cox2003-10-201-0/+4
* - Synchronize access to a vm page's valid field using the containingAlan Cox2003-10-191-41/+43
* - Synchronize access to the page's valid field inAlan Cox2003-10-181-1/+2
* DuH!Poul-Henning Kamp2003-10-181-2/+2
* Initialize bp->b_offset before calling VOP_[SPEC]STRATEGY().Poul-Henning Kamp2003-10-181-1/+2
* Add vm object locking to vnode_pager_lock(). (This triggers the movementAlan Cox2003-09-181-13/+31
* In vnode_pager_generic_putpages(), change the printf format specifierMarcel Moolenaar2003-08-291-2/+2
* Hold the page queues lock when performing vm_page_clear_dirty() andAlan Cox2003-08-231-0/+2
* Replace a homegrown bdone()/bwait() implementation by the real thingPoul-Henning Kamp2003-08-181-27/+5
* Use NULL for 3rd argument of VOP_BMAP() rather than custom cast.Poul-Henning Kamp2003-08-171-4/+2
* Use sparse struct initializations for struct pagerops.Poul-Henning Kamp2003-08-051-7/+6
* Maintain a lock on the vm object of interest throughout vm_fault(),Alan Cox2003-06-221-1/+3
* Lock the vm object when freeing a vm page.Alan Cox2003-06-181-0/+14
* Add vm object locking to various pagers' "get pages" methods, i386 stackAlan Cox2003-06-131-1/+2
* Use __FBSDID().David E. O'Brien2003-06-111-1/+3
* - Finish vm object and page locking in vnode_pager_setsize().Alan Cox2003-06-101-26/+21
* Lock the vm_object when performing vm_pager_deallocate().Alan Cox2003-05-061-3/+4
* - Convert vm_object_pip_wait() from using tsleep() to msleep().Alan Cox2003-04-261-3/+8
* Update locking around vm_object_page_remove() to use the new macros.Alan Cox2003-04-181-2/+2
* Including <sys/stdint.h> is (almost?) universally only to be able to usePoul-Henning Kamp2003-03-181-1/+0
* Remove ENABLE_VFS_IOOPT. It is a long unfinished work-in-progress.Alan Cox2003-03-061-3/+0
* We can get past here on a normal vnode as well, so use VOP_STRATEGY if so.Poul-Henning Kamp2003-01-131-1/+4
* Convert VOP_STRATEGY to VOP_SPECSTRATEGY in the generic getpages andPoul-Henning Kamp2003-01-051-2/+2
* Convert calls to BUF_STRATEGY to VOP_STRATEGY calls. This is a no-op sincePoul-Henning Kamp2003-01-031-2/+2
* Allow the VM object flushing code to cluster. When the filesystem syncerMatthew Dillon2002-12-281-2/+8
* Perform vm_object_lock() and vm_object_unlock() aroundAlan Cox2002-12-151-0/+2
* Hold the page queues lock when performing pmap_clear_modify().Alan Cox2002-11-271-0/+4
* Hold the page queues/flags lock when calling vm_page_set_validclean().Alan Cox2002-11-231-0/+4
* Add page queue and flag locking in vnode_pager_setsize().Alan Cox2002-11-231-0/+2
* Now that pmap_remove_all() is exported by our pmap implementationsAlan Cox2002-11-161-1/+1
* When prot is VM_PROT_NONE, call pmap_page_protect() directly rather thanAlan Cox2002-11-101-1/+1