aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_cluster.c
Commit message (Expand)AuthorAgeFilesLines
* These changes appear to give us benefits with both small (32MB) andKirk McKusick1999-07-081-13/+4
* The vfs.write_behind sysctl and related code support has been added toKirk McKusick1999-07-041-3/+40
* Hopefully fix the remaining glitches with the BUF_*() changes. This shouldPeter Wemm1999-06-291-3/+11
* Convert buffer locking from using the B_BUSY and B_WANTED flags to usingKirk McKusick1999-06-261-18/+17
* Reformat comment to match indentation of code around it.Julian Elischer1999-06-171-8/+9
* Changed trypbuf to a getpbuf to work around a problem where redundant writesDavid Greenman1999-06-161-2/+2
* The VFS/BIO subsystem contained a number of hacks in order to optimizeAlan Cox1999-05-021-3/+7
* Reviewed by: Many at differnt times in differnt parts,Julian Elischer1999-03-121-3/+3
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-271-2/+2
* This is a rather large commit that encompasses the new swapper,Matthew Dillon1999-01-211-4/+6
* KNFize, by bde.Eivind Eklund1999-01-101-9/+8
* Split DIAGNOSTIC -> DIAGNOSTIC, INVARIANTS, and INVARIANT_SUPPORT asEivind Eklund1999-01-081-18/+9
* Even the most recently allocated buffer may not have its b_blknoKirk McKusick1998-12-051-2/+5
* Because buffers may be tossed and recreated at will under the new VMKirk McKusick1998-11-171-4/+9
* Fixed a missing include. <sys/kernel.h> is needed by the newBruce Evans1998-11-151-2/+2
* Restored the "reallocblks" code to its former glory. What this does isDavid Greenman1998-11-131-15/+4
* Nitpicking and dusting performed on a train. Removes trivial warningsPoul-Henning Kamp1998-10-251-2/+2
* Cosmetic changes to the PAGE_XXX macros to make them consistent withDoug Rabson1998-09-041-3/+3
* Change various syscalls to use size_t arguments instead of u_int.Doug Rabson1998-08-241-9/+5
* Protect all modifications to v_numoutput with splbio().Doug Rabson1998-08-131-1/+3
* Protect all modifications to paging_in_progress with splvm(). The i386Doug Rabson1998-08-061-2/+6
* Fixed printf format errors.Bruce Evans1998-07-291-12/+12
* Fixed printf format errors.Bruce Evans1998-07-111-5/+6
* Don't depend on gcc's feature of casting lvalues.Bruce Evans1998-07-071-4/+5
* VOP_STRATEGY grows an (struct vnode *) argumentJulian Elischer1998-07-041-3/+3
* Make flushing dirty pages work correctly on filesystems thatJohn Dyson1998-05-211-12/+8
* Partially fixed write clustering for cases where cluster_wbuild() isBruce Evans1998-05-011-1/+4
* In kern_physio.c fix tsleep priority messup.John Dyson1998-03-191-11/+22
* Remove a soft-update hook that was accidentally added to the READ path.Julian Elischer1998-03-161-26/+53
* Some VM improvements, including elimination of alot of Sig-11John Dyson1998-03-161-16/+25
* Reviewed by: dyson@freebsd.org (john Dyson), dg@root.com (david greenman)Julian Elischer1998-03-081-3/+8
* This mega-commit is meant to fix numerous interrelated problems. ThereJohn Dyson1998-03-071-12/+6
* Back out DIAGNOSTIC changes.Eivind Eklund1998-02-061-2/+1
* Turn DIAGNOSTIC into a new-style option.Eivind Eklund1998-02-041-1/+2
* Change the busy page mgmt, so that when pages are freed, theyJohn Dyson1998-01-311-2/+13
* Make the debug options new-style.Eivind Eklund1998-01-311-1/+3
* Add better support for larger I/O clusters, including larger physicalJohn Dyson1998-01-241-5/+11
* Make our v_usecount vnode reference count work identically to theJohn Dyson1998-01-061-6/+13
* Remove a bunch of variables which were unused both in GENERIC and LINT.Poul-Henning Kamp1997-11-071-2/+2
* Removed unused #includes.Bruce Evans1997-08-021-5/+1
* Fix a problem with the VN device. Specifically, the VN device canJohn Dyson1997-06-151-1/+2
* Don't zero b_dirtyoff and b_dirtyend on error.Doug Rabson1997-04-251-3/+3
* Don't allow partial buffers to be cluster-comitted.Doug Rabson1997-04-181-1/+2
* Use OID_AUTO instead of magic number for the old sysctl debug.rcluster.Bruce Evans1997-04-011-16/+3
* Remove unnecessary check for vp->v_mount being null. PointedJohn Dyson1997-03-071-2/+2
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notPeter Wemm1997-02-221-1/+1
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
* This commit is the embodiment of some VFS read clustering improvements.John Dyson1996-12-291-127/+181
* Implement a new totally dynamic (up to MAXPHYS) buffer kva allocationJohn Dyson1996-11-301-1/+9
* Fix 4 problems:John Dyson1996-10-061-4/+10