aboutsummaryrefslogtreecommitdiff
path: root/sys/miscfs/specfs
Commit message (Expand)AuthorAgeFilesLines
* Add support for device drivers which want to track all open/closePoul-Henning Kamp1999-08-131-59/+18
* 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-131-9/+9
* 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-082-79/+1
* Now a dev_t is a pointer to struct specinfo which is shared by all specdevPoul-Henning Kamp1999-07-202-10/+7
* Convert buffer locking from using the B_BUSY and B_WANTED flags to usingKirk McKusick1999-06-261-5/+5
* Remove an unused variable.Dmitrij Tejblum1999-06-011-2/+1
* Simplify cdevsw registration.Poul-Henning Kamp1999-05-311-5/+1
* Divorce "dev_t" from the "major|minor" bitmap, which is now calledPoul-Henning Kamp1999-05-112-8/+4
* I got tired of seeing all the cdevsw[major(foo)] all over the place.Poul-Henning Kamp1999-05-081-21/+24
* Continue where Julian left off in July 1998:Poul-Henning Kamp1999-05-071-11/+11
* remove b_proc from struct buf, it's (now) unused.Poul-Henning Kamp1999-05-061-3/+2
* Catch a case spotted by Tor where files mmapped could leave garbage in theJulian Elischer1999-04-051-3/+13
* Reviewed by: Julian Elischer <julian@whistle.com>Matthew Dillon1999-02-252-26/+46
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-271-2/+5
* This is a rather large commit that encompasses the new swapper,Matthew Dillon1999-01-211-4/+4
* Fix possible NULL-pointer deref in error case (same as DEVFS).Eivind Eklund1998-12-161-2/+2
* The "easy" fixes for compiling the kernel -Wunused: remove unreferenced staticArchie Cobbs1998-12-071-2/+1
* Use TAILQ macros for clean/dirty block list processing. Set b_xflagsPeter Wemm1998-10-311-4/+4
* Removed redundant bitrotted checks for major numbers instead of updatingBruce Evans1998-10-261-4/+3
* various nits that didn't make it through the brucefilter.Poul-Henning Kamp1998-09-121-5/+6
* Add a new vnode op, VOP_FREEBLKS(), which filesystems can use to informPoul-Henning Kamp1998-09-051-1/+26
* Cosmetic changes to the PAGE_XXX macros to make them consistent withDoug Rabson1998-09-041-2/+2
* sort the prototypesPoul-Henning Kamp1998-08-251-12/+12
* Last commit managed to get mangled somehow.Poul-Henning Kamp1998-08-241-2/+4
* Remove the last remaining evidence of B_TAPE.Poul-Henning Kamp1998-08-241-13/+3
* Enabled Lite2 fix for reading from dead ttys.Bruce Evans1998-08-231-11/+2
* Cast pointers to uintptr_t/intptr_t instead of to u_long/long,Bruce Evans1998-07-151-2/+2
* Fixed printf format errors.Bruce Evans1998-07-111-6/+10
* There is no such thing any more as "struct bdevsw".Julian Elischer1998-07-041-4/+3
* VOP_STRATEGY grows an (struct vnode *) argumentJulian Elischer1998-07-041-2/+2
* This commit fixes various 64bit portability problems required forDoug Rabson1998-06-071-2/+2
* Make flushing dirty pages work correctly on filesystems thatJohn Dyson1998-05-211-2/+3
* Add changes and code to implement a functional DEVFS.Julian Elischer1998-04-192-4/+13
* Reviewed by: dyson@freebsd.org (john Dyson), dg@root.com (david greenman)Julian Elischer1998-03-082-10/+11
* Initialize b_resid, and also print out better diagnostics on I/OJohn Dyson1998-03-081-7/+19
* This mega-commit is meant to fix numerous interrelated problems. ThereJohn Dyson1998-03-071-31/+55
* Fix certain kinds of block device operations. For example, tunefs onJohn Dyson1998-03-041-9/+4
* Back out DIAGNOSTIC changes.Eivind Eklund1998-02-061-3/+1
* 1) Start using a cleaner and more consistant page allocator insteadJohn Dyson1998-02-051-2/+5
* Turn DIAGNOSTIC into a new-style option.Eivind Eklund1998-02-041-1/+3
* Make our v_usecount vnode reference count work identically to theJohn Dyson1998-01-061-7/+18
* Lots of improvements, including restructring the caching and managementJohn Dyson1997-12-291-10/+3
* Removed unused #includes. The need for most of them went away withBruce Evans1997-10-271-2/+1
* VFS interior redecoration.Poul-Henning Kamp1997-10-261-17/+6
* VFS clean up "hekto commit"Poul-Henning Kamp1997-10-161-4/+1
* Another VFS cleanup "kilo commit"Poul-Henning Kamp1997-10-161-44/+3
* VFS mega cleanup commit (x/N)Poul-Henning Kamp1997-10-161-9/+2
* vnops megacommitPoul-Henning Kamp1997-10-152-90/+74