aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_bio.c
Commit message (Expand)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagupstream/2.1.7_cvsrelease/2.1.7_cvscvs2svn1997-03-111-1/+1
* Brought in fix from rev 1.94: make sure pages involved in I/O are notDavid Greenman1996-06-301-2/+3
* Brought in fixes from revs 1.80, 1.82 and 1.83, with slight retrofittingDavid Greenman1996-01-071-19/+28
* Add missing splx(s) - from rev 1.70. Note that this change is too late forDavid Greenman1995-11-191-2/+4
* Brought in changes from revs 1.64-1.65: fix several serious bugs.David Greenman1995-10-011-49/+62
* Brought in changes from revs 1.53 and 1.54: fixed panic caused by wrongDavid Greenman1995-07-251-9/+17
* Brought in changes from rev 1.52: added additional diagnostic info.David Greenman1995-07-231-3/+3
* Brought in changes from rev 1.51: add missing parens, simply allocbuf()David Greenman1995-07-231-18/+16
* Brought in changes from rev 1.50: Re-lookup buffer if the vnode isn'tDavid Greenman1995-07-221-4/+2
* Brought in fixes from revs 1.48 and 1.49: Allow resizing of buffers andDavid Greenman1995-07-201-20/+6
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-7/+7
* Changes to fix the following bugs:David Greenman1995-05-211-19/+118
* Fix -Wformat warnings from LINT kernel.Rodney W. Grimes1995-05-111-4/+7
* Check for curproc != NULL before dereferencing it.David Greenman1995-04-301-5/+6
* Removed unused & empty bufstats() function.David Greenman1995-04-161-6/+1
* Killed gratuitous b_vp=NULL in bufinit. The entire buffer is alreadyDavid Greenman1995-04-161-2/+1
* 1) Check for curproc != NULL in bread/bwrite. John convinced me that thisDavid Greenman1995-04-161-3/+10
* Changes from John Dyson and myself:David Greenman1995-04-091-141/+115
* Removed some redundant 'vmio' checks.David Greenman1995-03-271-4/+4
* Removed third arg (vmio) to allocbuf() that was added with the originalDavid Greenman1995-03-261-8/+7
* Add and move declarations to fix all of the warnings from `gcc -Wimplicit'Bruce Evans1995-03-161-4/+2
* Removed most of the special policy regarding the seperation of VMIO andDavid Greenman1995-03-071-62/+13
* Added some more of John's "anti-chatter" fixes - set the page activationDavid Greenman1995-03-041-4/+11
* Fixes from John Dyson to work around vnode lock hang. Basically, removeDavid Greenman1995-03-031-8/+11
* Various changes from John and myself that do the following:David Greenman1995-03-011-6/+9
* Fixed thrashing buffer problem.David Greenman1995-02-251-2/+2
* Added some code to make sure that buffers associated with directories andDavid Greenman1995-02-221-41/+55
* Only do object paging_in_progress wakeups if someone is waiting on thisDavid Greenman1995-02-221-12/+63
* Only clear B_VMIO in brelse() - a bunch of special processing is requiredDavid Greenman1995-02-181-7/+1
* Make B_NOCACHE and B_INVAL buffers work correctly - throw away the data inDavid Greenman1995-02-031-2/+5
* Fix problem with freeing busy pages reported by Nick Sayer.David Greenman1995-01-261-4/+6
* Fixed a variety of deadlock and panic bugs, removed the bypass code, andDavid Greenman1995-01-241-217/+61
* Restore original fix from ohki, not check m for NULL it is already doneAndrey A. Chernov1995-01-211-3/+3
* Change if (m->valid == 0) to if (m && m->valid == 0)Andrey A. Chernov1995-01-201-2/+2
* Submitted by: ohki@gssm.otsuka.tsukuba.ac.jpBill Paul1995-01-201-3/+5
* Attempt to close a hole using splhigh/splx. There still appears to be aDavid Greenman1995-01-151-1/+6
* MFS doesn't bother to associate a struct mount with the vnode...so workDavid Greenman1995-01-111-18/+16
* PG_FAKE is no longer used - so don't bother to clear it.David Greenman1995-01-101-2/+1
* Fixed some formatting weirdness that I overlooked in the previous commit.David Greenman1995-01-101-7/+7
* These changes embody the support of the fully coherent merged VM buffer cache,David Greenman1995-01-091-222/+1027
* Only VM_WAIT if curproc != pageproc. A deadlock can occur otherwise.David Greenman1994-10-231-3/+3
* Removed references to bclnlist which we don't use/support/need.David Greenman1994-10-181-2/+1
* Stuff object into v_vmdata rather than pager. Not important which atDavid Greenman1994-10-051-14/+9
* Commented out anti-paging code as it was found to be the cause of aDavid Greenman1994-10-041-3/+3
* While in the real world, I had a bad case of being swapped out for a lot ofPoul-Henning Kamp1994-09-251-11/+12
* Rather than exclude bounce buffers support with NOBOUNCE, include itDavid Greenman1994-08-311-1/+3
* Changed to reclaim memory from other buffers to eliminate memoryDavid Greenman1994-08-301-2/+37
* Fix up some sloppy coding practices:Garrett Wollman1994-08-181-1/+3
* Run-time configuration of VFS update interval. Old UPDATE_INTERVALGarrett Wollman1994-08-081-5/+1
* Made pmap_kenter "TLB safe". ...and then removed all the pmap_updates thatDavid Greenman1994-08-071-3/+1