| Commit message (Expand) | Author | Age | Files | Lines |
* | Make cdevsw[] static. | phk | 2001-10-26 | 1 | -1/+1 |
* | Add dev_named(dev, name), which is similar in spirit to devtoname(). | jlemon | 2001-10-17 | 1 | -0/+13 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -1/+1 |
* | Make the fmt arguments to make_dev and make_dev_alias const char *. | imp | 2001-08-02 | 1 | -2/+2 |
* | Create a general facility for making dev_t's depend on another | phk | 2001-05-26 | 1 | -11/+20 |
* | Call strlen() once instead of twice. | brian | 2001-04-14 | 1 | -2/+2 |
* | Add a KASSERT on unit2minor() so that we catch it if people try to pass | phk | 2001-03-20 | 1 | -0/+1 |
* | Fixes to track snapshot copy-on-write checking in the specinfo | mckusick | 2001-03-07 | 1 | -0/+1 |
* | KASSERT that the minor number passed to make_dev() is valid. | brian | 2001-02-02 | 1 | -0/+3 |
* | Convert a Debugger(3) to a panic(9) and a EINVAL. | phk | 2001-01-21 | 1 | -1/+3 |
* | Convert more malloc+bzero to malloc+M_ZERO. | dwmalone | 2000-12-08 | 1 | -2/+1 |
* | Staticize some malloc M_ instances. | phk | 2000-12-08 | 1 | -1/+1 |
* | Axe some unused variables. | jhb | 2000-11-10 | 1 | -2/+0 |
* | Deprecate devsw->d_bmaj entirely. | phk | 2000-10-31 | 1 | -41/+1 |
* | Allow all users to access the dev -> devname sysctl. | phk | 2000-10-29 | 1 | -1/+1 |
* | Rename lminor() to dev2unit(). This function gives a linear unit number | phk | 2000-09-19 | 1 | -1/+8 |
* | revent multiple make_dev() calls on the same dev_t and similar bogosities. | phk | 2000-09-11 | 1 | -0/+16 |
* | Add code to devname(3) so it can find the names of devices which | phk | 2000-09-09 | 1 | -0/+27 |
* | Avoid the modules madness I inadvertently introduced by making the | phk | 2000-09-02 | 1 | -3/+28 |
* | Remove all traces of Julians DEVFS (incl from kern/subr_diskslice.c) | phk | 2000-08-20 | 1 | -15/+54 |
* | Back out the previous change to the queue(3) interface. | jake | 2000-05-26 | 1 | -2/+2 |
* | Change the way that the queue(3) structures are declared; don't assume that | jake | 2000-05-23 | 1 | -2/+2 |
* | Change the "bdev-whiner" to whine when open is attempted and extend | phk | 2000-05-09 | 1 | -5/+0 |
* | Reword warning to make it clearer (I read it as "remove block devices created | kris | 2000-03-25 | 1 | -1/+1 |
* | Whine at users who still have block devices in /dev, give them until | phk | 2000-03-21 | 1 | -0/+5 |
* | Backout previous commit. It was a mistake. | bp | 2000-01-23 | 1 | -1/+1 |
* | Replace non obvious number with SPECNAMELEN constant. | bp | 2000-01-23 | 1 | -1/+1 |
* | Be more careful about NOUDEV and NODEV. | phk | 2000-01-04 | 1 | -0/+8 |
* | Report swapdevices as cdevs rather than bdevs. | phk | 1999-11-29 | 1 | -9/+0 |
* | Remove the now unused chrtoblk() function. | phk | 1999-11-29 | 1 | -17/+0 |
* | Zap devsw_module_handler(). | peter | 1999-11-08 | 1 | -12/+0 |
* | Rename remove_dev() to destroy_dev(). | phk | 1999-11-08 | 1 | -1/+1 |
* | Remove the devsw magic from DEV_MODULE() | phk | 1999-11-07 | 1 | -17/+0 |
* | A little step further in the dev_t cleanups: | phk | 1999-10-04 | 1 | -17/+28 |
* | Const'ify devtoname() and d_name. This exposes some errors (2 non-benign). | bde | 1999-09-13 | 1 | -3/+7 |
* | Add dev_t freeing code. Controlled by sysctl debug.free_devt, default | phk | 1999-08-29 | 1 | -9/+58 |
* | Put a brief comment on a couple of #defines. | phk | 1999-08-28 | 1 | -0/+7 |
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 1 | -1/+1 |
* | Convert DEVFS hooks in (most) drivers to make_dev(). | phk | 1999-08-23 | 1 | -21/+5 |
* | First small steps at merging DEVFS and PHK's Dev_t stuff. | julian | 1999-08-20 | 1 | -1/+19 |
* | Welcome devtoname(), to most likely be used when printing information | billf | 1999-08-17 | 1 | -1/+8 |
* | Introduce lminor(dev_t dev), which returns a linear minor number, | phk | 1999-08-15 | 1 | -1/+12 |
* | The bdevsw() and cdevsw() are now identical, so kill the former. | phk | 1999-08-13 | 1 | -7/+3 |
* | Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>, | phk | 1999-08-08 | 1 | -3/+22 |
* | cdevsw_remove: place correct value in bmaj2cmaj. This had caused | grog | 1999-08-08 | 1 | -2/+2 |
* | Fix a REALLY embarrassing mistake. Don't look; I warned you. | green | 1999-07-20 | 1 | -2/+2 |
* | Make a dev2budev() function, and use it. This refixes pstat (working, broken, | green | 1999-07-20 | 1 | -1/+10 |
* | Now a dev_t is a pointer to struct specinfo which is shared by all specdev | phk | 1999-07-20 | 1 | -25/+51 |
* | [click] Now all dev_t's in the kernel have their char device major. | phk | 1999-07-19 | 1 | -18/+6 |
* | Use 256 as magic in bmaj2cmaj[]. Treat BLK/CHR dev_t more correctly. | phk | 1999-07-17 | 1 | -6/+14 |