summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_export.c
Commit message (Expand)AuthorAgeFilesLines
* Style police catches up with rev 1.26 of src/sys/sys/sysctl.h:Poul-Henning Kamp2000-07-031-4/+4
* Move prtactive to vfs from ufs. It is used all over the place.Poul-Henning Kamp2000-06-271-0/+1
* Virtualizes & untangles the bioops operations vector.Poul-Henning Kamp2000-06-161-2/+1
* Back out the previous change to the queue(3) interface.Jake Burkholder2000-05-261-4/+4
* Change the way that the queue(3) structures are declared; don't assume thatJake Burkholder2000-05-231-4/+4
* Fix the rootmount code for now.Jeroen Ruigrok van der Werven2000-05-141-1/+2
* Separate the struct bio related stuff out of <sys/buf.h> intoPoul-Henning Kamp2000-05-051-0/+1
* Rename the existing BUF_STRATEGY() to DEV_STRATEGY()Poul-Henning Kamp2000-03-201-3/+3
* In vn_isdisk(), check whether vp->v_rdev is NULL. If it is, thenChris Costello2000-03-181-0/+5
* Eliminate the undocumented, experimental, non-delivering and highlyPoul-Henning Kamp2000-03-161-6/+0
* Don't try so hard to make the lower 16 bits of fsids unique. It tendedBruce Evans2000-03-141-22/+13
* Try harder to make the lower 16 bits of fsids unique. The vfs typeBruce Evans2000-03-121-15/+25
* Do refcounting of open devices (more) correctly.Søren Schmidt2000-02-071-0/+16
* Remove static qualifier from vgonel, as it is needed by the Arla folkRobert Watson2000-02-021-2/+1
* This patch fixes a locking bug that can result in deadlock ifRobert Watson2000-01-291-2/+17
* Give vn_isdisk() a second argument where it can return a suitable errno.Poul-Henning Kamp2000-01-101-6/+18
* Remove the P_BUFEXHAUST flag from the syncer process (leavingKirk McKusick2000-01-101-2/+0
* Change NDFREE() from a macro to a function for the time being; the macroEivind Eklund2000-01-081-0/+34
* Introduce a mechanism to suspend/resume system processes. Suspend syncerLuoqi Chen2000-01-071-7/+14
* Enhance reassignbuf(). When a buffer cannot be time-optimally insertedMatthew Dillon2000-01-051-2/+19
* Prettyness police: Identify flags in b_xflags with BX_ to distinguishKirk McKusick1999-12-221-17/+19
* Add MAP_NOSYNC feature to mmap(), and MADV_NOSYNC and MADV_AUTOSYNC toMatthew Dillon1999-12-121-1/+1
* Lock reporting and assertion changes.Eivind Eklund1999-12-111-3/+3
* Remove vfs_getrootfsid() function (a temporary hack added a few monthsMatthew Dillon1999-11-291-17/+0
* Convert various pieces of code to use vn_isdisk() rather than checkingPoul-Henning Kamp1999-11-221-3/+4
* struct mountlist and struct mount.mnt_list have no business beingPoul-Henning Kamp1999-11-201-14/+14
* Commit the remaining part of PR14914:Poul-Henning Kamp1999-11-161-19/+18
* Next step in the device cleanup process.Poul-Henning Kamp1999-11-091-1/+1
* useracc() the prequel:Poul-Henning Kamp1999-10-291-1/+0
* Trim unused options (or #ifdef for undoc options).Peter Wemm1999-10-111-1/+0
* Move the buffered read/write code out of spec_{read|write} and intoPoul-Henning Kamp1999-10-041-3/+0
* Remove v_maxio from struct vnode.Poul-Henning Kamp1999-09-291-1/+1
* Final commit to remove vnode->v_lastr. vm_fault now handles readMatthew Dillon1999-09-211-1/+0
* Initialize vp->v_maxio to its default in getnetvnode() rather thanPoul-Henning Kamp1999-09-201-1/+1
* Fix BOOTP root FS mounts. Also cleanup vfs_getnewfsid() and collapseMatthew Dillon1999-09-191-21/+37
* Add vfs.enable_userblk_io sysctl to control whether user reads and writesMatthew Dillon1999-09-171-0/+3
* Add dev_t freeing code. Controlled by sysctl debug.free_devt, defaultPoul-Henning Kamp1999-08-291-1/+2
* remove unused variables.Poul-Henning Kamp1999-08-281-1/+1
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Simplify the handling of VCHR and VBLK vnodes using the new dev_t:Poul-Henning Kamp1999-08-261-218/+57
* Introduce vn_isdisk(struct vnode *vp) function, and use it to test for diskness.Poul-Henning Kamp1999-08-251-9/+20
* Make DEVFS use PHK's specinfo struct as the source of dev_t and devsw.Julian Elischer1999-08-251-3/+2
* Support full-precision file timestamps. Until now, only the secondsJohn Polstra1999-08-221-1/+43
* The bdevsw() and cdevsw() are now identical, so kill the former.Poul-Henning Kamp1999-08-131-2/+2
* s/v_specinfo/v_rdev/Poul-Henning Kamp1999-08-131-4/+4
* Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>,Poul-Henning Kamp1999-08-081-4/+2
* Add sysctl and support code to allow directories to be VMIO'd. The defaultAlan Cox1999-07-261-3/+3
* Now a dev_t is a pointer to struct specinfo which is shared by all specdevPoul-Henning Kamp1999-07-201-51/+38
* [click] Now all dev_t's in the kernel have their char device major.Poul-Henning Kamp1999-07-191-2/+4
* Introduce the vn_todev(struct vnode*) function, which returns the dev_tPoul-Henning Kamp1999-07-181-1/+13