aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_bio.c
Commit message (Expand)AuthorAgeFilesLines
* Remove a six year old undocumented #ifdef : NO_B_MALLOC.Poul-Henning Kamp2002-05-041-12/+0
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-041-1/+1
* brelse() was improperly clearing B_DELWRI in the B_DELWRI|B_INVAL caseMatthew Dillon2002-04-031-5/+2
* Remove __P.Alfred Perlstein2002-03-191-2/+2
* Fixed some printf format errors (hopefully all of the remaining daddr64_tBruce Evans2002-03-191-8/+10
* Convert all pmap_kenter/pmap_kremove pairs in MI code to use pmap_qenter/Jake Burkholder2002-03-171-2/+2
* Introduce the new 64-bit size disk block, daddr64_t. ChangeKirk McKusick2002-03-151-2/+2
* Giant pushdown for read/write/pread/pwrite syscalls.Alfred Perlstein2002-03-151-0/+2
* * Move bswlist declaration and initialization from kern/vfs_bio.c toEivind Eklund2002-03-051-4/+15
* Document all functions, global and static variables, and sysctls.Eivind Eklund2002-03-051-69/+138
* Back out all the pmap related stuff I've touched over the last few days.Peter Wemm2002-02-271-2/+2
* Jake further reduced IPI shootdowns on sparc64 in loops by using rangedPeter Wemm2002-02-271-2/+2
* GC: BIO_ORDERED, various infrastructure dealing with BIO_ORDERED.Poul-Henning Kamp2002-02-221-2/+0
* Replace bowrite() with BUF_WRITE in ufs.Poul-Henning Kamp2002-02-221-16/+0
* GC P_BUFEXHAUST leftovers, we've had a new mechanism to avoid bufferMatthew Dillon2002-01-311-1/+0
* This fixes a large number of bugs in our NFS client side code. A recentMatthew Dillon2001-12-141-0/+12
* The nbuf calculation was assuming that PAGE_SIZE = 4096 bytes, which isMatthew Dillon2001-12-081-6/+12
* Placemark an interrupt race in -current which is currently protected byMatthew Dillon2001-11-081-0/+4
* Implement IO_NOWDRAIN and B_NOWDRAIN - prevents the buffer cache from blockingMatthew Dillon2001-11-051-4/+9
* DocumentationMatthew Dillon2001-10-211-6/+3
* Change the kernel's ucred API as follows:John Baldwin2001-10-111-10/+4
* Enable vmiodirenable by default. Remove incorrect comment from sysctl.conf.Matthew Dillon2001-09-261-1/+1
* KSE Milestone 2Julian Elischer2001-09-121-7/+7
* Remove the code that limited the buffer_map to 1/2 the size of theMatthew Dillon2001-08-221-0/+2
* Move most of the kernel submap initialization code, including theMatthew Dillon2001-08-221-7/+61
* Revert previous accidental commit. FWIW, it was part of enablingPeter Wemm2001-07-271-0/+3
* Fix cut/paste blunder. Serves me right for doing a last minute tweakPeter Wemm2001-07-271-3/+0
* With Alfred's permission, remove vm_mtx in favor of a fine-grained approachMatthew Dillon2001-07-041-77/+35
* This patch implements O_DIRECT about 80% of the way. It takes a patchsetMatthew Dillon2001-05-241-2/+7
* - Always call bfreekva() w/o vm_mtx held.John Baldwin2001-05-231-28/+12
* Introduce a global lock for the vm subsystem (vm_mtx).Alfred Perlstein2001-05-191-4/+101
* Revert consequences of changes to mount.h, part 2.Greg Lehey2001-04-291-2/+0
* Correct #includes to work with fixed sys/mount.h.Greg Lehey2001-04-231-0/+2
* bread() is a special case of breadn(), so don't replicate code.Poul-Henning Kamp2001-04-181-23/+2
* Write a switch statement as less obscure if statements.Poul-Henning Kamp2001-04-171-18/+8
* This patch removes the VOP_BWRITE() vector.Poul-Henning Kamp2001-04-171-1/+8
* Add debugging option to always read/write cylinder groups as fullKirk McKusick2001-04-171-1/+5
* Fix lockup for loopback NFS mounts. The pipelined I/O limitations could beMatthew Dillon2001-02-281-3/+7
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-1/+1
* This commit represents work mainly submitted by Tor and slightly modifiedMatthew Dillon2001-02-041-6/+13
* Use PCPU_GET, PCPU_PTR and PCPU_SET to access all per-cpu variablesJake Burkholder2001-01-101-5/+5
* This implements a better launder limiting solution. There was a solutionMatthew Dillon2000-12-261-135/+128
* Stick the kthread API in a kthread_* namespace, and the specialized kprocJohn Baldwin2000-12-151-2/+2
* Implement a low-memory deadlock solution.Matthew Dillon2000-11-181-80/+128
* Take VBLK devices further out of their missery.Poul-Henning Kamp2000-11-021-1/+1
* Catch up to moving headers:John Baldwin2000-10-201-2/+1
* Convert lockmgr locks from using simple locks to using mutexes.Jason Evans2000-10-041-2/+2
* Add three new VOPs: VOP_CREATEVOBJECT, VOP_DESTROYVOBJECT and VOP_GETVOBJECT.Boris Popov2000-09-121-11/+13
* Major update to the way synchronization is done in the kernel. HighlightsJason Evans2000-09-071-7/+13
* Now that buffer locks can be recursive, we need to delete the panicsKirk McKusick2000-07-251-4/+0