aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
Commit message (Expand)AuthorAgeFilesLines
* Simplify the handling of VCHR and VBLK vnodes using the new dev_t:Poul-Henning Kamp1999-08-262-21/+4
* Introduce vn_isdisk(struct vnode *vp) function, and use it to test for diskness.Poul-Henning Kamp1999-08-253-18/+6
* Fix comment to match reality..Julian Elischer1999-08-251-1/+2
* Initialise fsids with (user) device numbers again. Bitrot when dev_t'sBruce Evans1999-08-232-4/+4
* Convert DEVFS hooks in (most) drivers to make_dev().Poul-Henning Kamp1999-08-231-35/+1
* Let processes retrieve their argv through procfs. Revert to the originalMarcel Moolenaar1999-08-191-8/+41
* Add the (inline) function vm_page_undirty for clearing the dirty bitmaskAlan Cox1999-08-171-3/+3
* Spring cleaning around strategy and disklabels/slices:Poul-Henning Kamp1999-08-141-3/+3
* Add support for device drivers which want to track all open/closePoul-Henning Kamp1999-08-131-59/+18
* Don't examine vp->v_tag (see comment in vnode.h)Poul-Henning Kamp1999-08-131-3/+2
* Remove spec_getattr(), which as far as I can tell can never be called from th...Poul-Henning Kamp1999-08-131-3/+1
* The bdevsw() and cdevsw() are now identical, so kill the former.Poul-Henning Kamp1999-08-134-19/+19
* s/v_specinfo/v_rdev/Poul-Henning Kamp1999-08-131-6/+6
* Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>,Poul-Henning Kamp1999-08-0810-25/+11
* Fixed printf format errors (%qu -> %llu; the arg was already unsigned longBruce Evans1999-08-081-5/+3
* Fixed all printf format errors reported by gcc -Wformat on i386's:Bruce Evans1999-08-081-10/+16
* The dev returned here is what is found in the st_dev field.Robert V. Baron1999-08-021-2/+3
* Don't set DE_ACCESS for unsuccessful reads.Bruce Evans1999-07-251-8/+12
* Remove the RCS "Log" and all the verbiage it has generated.Poul-Henning Kamp1999-07-2110-1304/+12
* Now a dev_t is a pointer to struct specinfo which is shared by all specdevPoul-Henning Kamp1999-07-201-2/+1
* Don't access the device with vp->v_specinfo->si_rdev, use vp->v_rdev.Poul-Henning Kamp1999-07-201-2/+28
* I have not one single time remembered the name of this function correctlyPoul-Henning Kamp1999-07-171-3/+3
* Allow jailed proccesses to open non-process vnodes like the root of the fs.Poul-Henning Kamp1999-07-091-2/+2
* Use %q rather than rolling a custom routine.Peter Wemm1999-07-091-51/+7
* Support for i386 hardware breakpoints.Jonathan Lemon1999-07-091-0/+101
* Implement support for hardware debug registers on the i386.Jonathan Lemon1999-07-093-3/+20
* Make sure that stat(2) and friends always return a valid st_dev field.Poul-Henning Kamp1999-07-025-13/+6
* move <sys/systm.h> before <sys/buf.h>Peter Wemm1999-07-011-2/+2
* Convert buffer locking from using the B_BUSY and B_WANTED flags to usingKirk McKusick1999-06-262-8/+7
* Add a vnode argument to VOP_BWRITE to get rid of the last vnodeKirk McKusick1999-06-163-115/+8
* Eliminate the bogus procfs private almost struct dirent structure.Poul-Henning Kamp1999-06-133-43/+27
* Remove an unused variable.Dmitrij Tejblum1999-06-011-2/+1
* Simplify cdevsw registration.Poul-Henning Kamp1999-05-317-25/+16
* This commit should be a extensive NO-OP:Poul-Henning Kamp1999-05-301-6/+21
* Don't call calcru() on a swapped-out process. calcru() access p_stats, whichDmitrij Tejblum1999-05-221-16/+10
* Driver is now ported to NetBSD.Semen Ustimenko1999-05-1212-116/+251
* Divorce "dev_t" from the "major|minor" bitmap, which is now calledPoul-Henning Kamp1999-05-1112-26/+26
* remove cast from dev_t to dev_t.Poul-Henning Kamp1999-05-091-2/+11
* I got tired of seeing all the cdevsw[major(foo)] all over the place.Poul-Henning Kamp1999-05-084-31/+37
* The lowercasing of Joliet filenames was not a feature.Daniel C. Sobral1999-05-081-2/+2
* Continue where Julian left off in July 1998:Poul-Henning Kamp1999-05-073-19/+19
* One too many vfsops..Peter Wemm1999-05-061-2/+1
* remove b_proc from struct buf, it's (now) unused.Poul-Henning Kamp1999-05-061-3/+2
* Add sufficient braces to keep egcs happy about potentially ambiguousPeter Wemm1999-05-062-5/+6
* Make the type and map files claim 0 bytes size. Tar doesn't get confusedPoul-Henning Kamp1999-05-041-13/+10
* Add even more () to CHECKIO which by now feels positively LISPish.Poul-Henning Kamp1999-05-041-3/+4
* Add a new "file" to procfs: "rlimit" which shows the resource limits forPoul-Henning Kamp1999-04-304-4/+188
* This Implements the mumbled about "Jail" feature.Poul-Henning Kamp1999-04-284-9/+27
* Change suser_xxx() to suser() where it applies.Poul-Henning Kamp1999-04-271-4/+5
* Suser() simplification:Poul-Henning Kamp1999-04-276-17/+16