summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_subr.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix 2nd arg to udev2dev().Poul-Henning Kamp1999-07-171-2/+2
* I have not one single time remembered the name of this function correctlyPoul-Henning Kamp1999-07-171-4/+4
* Correct a couple of spelling errors in comments.Kris Kennaway1999-07-121-3/+3
* These changes appear to give us benefits with both small (32MB) andKirk McKusick1999-07-081-2/+2
* The buffer queue mechanism has been reformulated. Instead of havingKirk McKusick1999-07-041-10/+42
* Make sure that stat(2) and friends always return a valid st_dev field.Poul-Henning Kamp1999-07-021-4/+5
* Slight reorganization of kernel thread/process creation. Instead of usingPeter Wemm1999-07-011-3/+4
* Convert buffer locking from using the B_BUSY and B_WANTED flags to usingKirk McKusick1999-06-261-28/+23
* Add a vnode argument to VOP_BWRITE to get rid of the last vnodeKirk McKusick1999-06-161-4/+4
* Get rid of the global variable rushjob and replace it with a function inKirk McKusick1999-06-151-6/+36
* Simplify cdevsw registration.Poul-Henning Kamp1999-05-311-9/+7
* Remove the test for bdevsw(dev) == NULL from bdevvp() because it failsJohn Birrell1999-05-241-2/+2
* Legally acquire a major number for mfs.Luoqi Chen1999-05-141-5/+2
* Previously directories were sync'ed every 10 seconds while bitmaps &Kirk McKusick1999-05-141-3/+3
* Fix (?) SPECHASH dev_t/major/minor/etc argsPeter Wemm1999-05-121-2/+2
* Don't peek into dev_tPoul-Henning Kamp1999-05-121-2/+2
* Divorce "dev_t" from the "major|minor" bitmap, which is now calledPoul-Henning Kamp1999-05-111-10/+13
* Fix some of the places where too much inside knowledge about major/minorPoul-Henning Kamp1999-05-081-3/+3
* I got tired of seeing all the cdevsw[major(foo)] all over the place.Poul-Henning Kamp1999-05-081-7/+7
* Continue where Julian left off in July 1998:Poul-Henning Kamp1999-05-071-5/+5
* Add sysctl descriptions to many SYSCTL_XXXsBill Fumerola1999-05-031-2/+3
* Reviewed by: Many at differnt times in differnt parts,Julian Elischer1999-03-121-12/+23
* Reviewed by: Julian Elischer <julian@whistle.com>Matthew Dillon1999-02-251-7/+29
* Protect vn worklist and vn->v_{clean,dirty}blkhd at splbio().Matthew Dillon1999-02-191-9/+17
* vp->v_object must be valid after normal flow of vfs_object_create()Matthew Dillon1999-02-041-3/+9
* More const fixes for -Wall, -Wcast-qualMatthew Dillon1999-01-291-2/+2
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-281-2/+2
* This is a rather large commit that encompasses the new swapper,Matthew Dillon1999-01-211-1/+45
* KNFize, by bde.Eivind Eklund1999-01-101-2/+4
* Split DIAGNOSTIC -> DIAGNOSTIC, INVARIANTS, and INVARIANT_SUPPORT asEivind Eklund1999-01-081-30/+11
* Remove the 'waslocked' parameter to vfs_object_create().Eivind Eklund1999-01-051-19/+6
* Finish staticization.Eivind Eklund1999-01-051-5/+5
* Ifdefed conditionally used simplock variables.Bruce Evans1999-01-021-2/+4
* Restored rev.1.31 which was clobbered by rev.1.69 (the big Lite2Bruce Evans1998-12-241-2/+3
* Check return value of tsleep(). I've checked of all call points -Eivind Eklund1998-12-221-4/+7
* Staticize.Eivind Eklund1998-12-211-9/+9