| Commit message (Expand) | Author | Age | Files | Lines |
* | Add support for device drivers which want to track all open/close | Poul-Henning Kamp | 1999-08-13 | 1 | -59/+18 |
* | Remove spec_getattr(), which as far as I can tell can never be called from th... | Poul-Henning Kamp | 1999-08-13 | 1 | -3/+1 |
* | The bdevsw() and cdevsw() are now identical, so kill the former. | Poul-Henning Kamp | 1999-08-13 | 1 | -9/+9 |
* | s/v_specinfo/v_rdev/ | Poul-Henning Kamp | 1999-08-13 | 1 | -6/+6 |
* | Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>, | Poul-Henning Kamp | 1999-08-08 | 2 | -79/+1 |
* | Now a dev_t is a pointer to struct specinfo which is shared by all specdev | Poul-Henning Kamp | 1999-07-20 | 2 | -10/+7 |
* | Convert buffer locking from using the B_BUSY and B_WANTED flags to using | Kirk McKusick | 1999-06-26 | 1 | -5/+5 |
* | Remove an unused variable. | Dmitrij Tejblum | 1999-06-01 | 1 | -2/+1 |
* | Simplify cdevsw registration. | Poul-Henning Kamp | 1999-05-31 | 1 | -5/+1 |
* | Divorce "dev_t" from the "major|minor" bitmap, which is now called | Poul-Henning Kamp | 1999-05-11 | 2 | -8/+4 |
* | I got tired of seeing all the cdevsw[major(foo)] all over the place. | Poul-Henning Kamp | 1999-05-08 | 1 | -21/+24 |
* | Continue where Julian left off in July 1998: | Poul-Henning Kamp | 1999-05-07 | 1 | -11/+11 |
* | remove b_proc from struct buf, it's (now) unused. | Poul-Henning Kamp | 1999-05-06 | 1 | -3/+2 |
* | Catch a case spotted by Tor where files mmapped could leave garbage in the | Julian Elischer | 1999-04-05 | 1 | -3/+13 |
* | Reviewed by: Julian Elischer <julian@whistle.com> | Matthew Dillon | 1999-02-25 | 2 | -26/+46 |
* | Fix warnings in preparation for adding -Wall -Wcast-qual to the | Matthew Dillon | 1999-01-27 | 1 | -2/+5 |
* | This is a rather large commit that encompasses the new swapper, | Matthew Dillon | 1999-01-21 | 1 | -4/+4 |
* | Fix possible NULL-pointer deref in error case (same as DEVFS). | Eivind Eklund | 1998-12-16 | 1 | -2/+2 |
* | The "easy" fixes for compiling the kernel -Wunused: remove unreferenced static | Archie Cobbs | 1998-12-07 | 1 | -2/+1 |
* | Use TAILQ macros for clean/dirty block list processing. Set b_xflags | Peter Wemm | 1998-10-31 | 1 | -4/+4 |
* | Removed redundant bitrotted checks for major numbers instead of updating | Bruce Evans | 1998-10-26 | 1 | -4/+3 |
* | various nits that didn't make it through the brucefilter. | Poul-Henning Kamp | 1998-09-12 | 1 | -5/+6 |
* | Add a new vnode op, VOP_FREEBLKS(), which filesystems can use to inform | Poul-Henning Kamp | 1998-09-05 | 1 | -1/+26 |
* | Cosmetic changes to the PAGE_XXX macros to make them consistent with | Doug Rabson | 1998-09-04 | 1 | -2/+2 |
* | sort the prototypes | Poul-Henning Kamp | 1998-08-25 | 1 | -12/+12 |
* | Last commit managed to get mangled somehow. | Poul-Henning Kamp | 1998-08-24 | 1 | -2/+4 |
* | Remove the last remaining evidence of B_TAPE. | Poul-Henning Kamp | 1998-08-24 | 1 | -13/+3 |
* | Enabled Lite2 fix for reading from dead ttys. | Bruce Evans | 1998-08-23 | 1 | -11/+2 |
* | Cast pointers to uintptr_t/intptr_t instead of to u_long/long, | Bruce Evans | 1998-07-15 | 1 | -2/+2 |
* | Fixed printf format errors. | Bruce Evans | 1998-07-11 | 1 | -6/+10 |
* | There is no such thing any more as "struct bdevsw". | Julian Elischer | 1998-07-04 | 1 | -4/+3 |
* | VOP_STRATEGY grows an (struct vnode *) argument | Julian Elischer | 1998-07-04 | 1 | -2/+2 |
* | This commit fixes various 64bit portability problems required for | Doug Rabson | 1998-06-07 | 1 | -2/+2 |
* | Make flushing dirty pages work correctly on filesystems that | John Dyson | 1998-05-21 | 1 | -2/+3 |
* | Add changes and code to implement a functional DEVFS. | Julian Elischer | 1998-04-19 | 2 | -4/+13 |
* | Reviewed by: dyson@freebsd.org (john Dyson), dg@root.com (david greenman) | Julian Elischer | 1998-03-08 | 2 | -10/+11 |
* | Initialize b_resid, and also print out better diagnostics on I/O | John Dyson | 1998-03-08 | 1 | -7/+19 |
* | This mega-commit is meant to fix numerous interrelated problems. There | John Dyson | 1998-03-07 | 1 | -31/+55 |
* | Fix certain kinds of block device operations. For example, tunefs on | John Dyson | 1998-03-04 | 1 | -9/+4 |
* | Back out DIAGNOSTIC changes. | Eivind Eklund | 1998-02-06 | 1 | -3/+1 |
* | 1) Start using a cleaner and more consistant page allocator instead | John Dyson | 1998-02-05 | 1 | -2/+5 |
* | Turn DIAGNOSTIC into a new-style option. | Eivind Eklund | 1998-02-04 | 1 | -1/+3 |
* | Make our v_usecount vnode reference count work identically to the | John Dyson | 1998-01-06 | 1 | -7/+18 |
* | Lots of improvements, including restructring the caching and management | John Dyson | 1997-12-29 | 1 | -10/+3 |
* | Removed unused #includes. The need for most of them went away with | Bruce Evans | 1997-10-27 | 1 | -2/+1 |
* | VFS interior redecoration. | Poul-Henning Kamp | 1997-10-26 | 1 | -17/+6 |
* | VFS clean up "hekto commit" | Poul-Henning Kamp | 1997-10-16 | 1 | -4/+1 |
* | Another VFS cleanup "kilo commit" | Poul-Henning Kamp | 1997-10-16 | 1 | -44/+3 |
* | VFS mega cleanup commit (x/N) | Poul-Henning Kamp | 1997-10-16 | 1 | -9/+2 |
* | vnops megacommit | Poul-Henning Kamp | 1997-10-15 | 2 | -90/+74 |