summaryrefslogtreecommitdiff
path: root/sys/dev/null/null.c
Commit message (Collapse)AuthorAgeFilesLines
* Send the remains (such as I have located) of "block major numbers" toPoul-Henning Kamp2001-03-261-2/+0
| | | | | | | the bit-bucket. Notes: svn path=/head/; revision=74810
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-2/+1
| | | | | | | | Submitted by: josh@zipperup.org Submitted by: Robert Drehmel <robd@gmx.net> Notes: svn path=/head/; revision=69781
* During a verbose boot, call the null device 'null' rather than 'null0' toJohn Baldwin2000-10-061-1/+1
| | | | | | | be more consistent with the rest of the kernel. Notes: svn path=/head/; revision=66709
* Move sys/dev/nulldev to sys/dev/null to be more consistent with namingJohn Baldwin2000-10-021-2/+2
| | | | | | | under sys/dev. Notes: svn path=/head/; revision=66560
* Small style change; make function names less likely to clash withMark Murray2000-07-091-7/+7
| | | | | | | existing names. "null" is too common a string; use "null_". Notes: svn path=/head/; revision=62843
* New machine independant /dev/null and /dev/zero driver. This device isMark Murray2000-06-251-0/+137
severely stripped down compared with its predecessor, and is measurably a _lot_ faster. Many thanks to Jeroen van Gelderen for lots of good ideas. There is still a problem with this; it is written as a mudule, and as such is theoretically unloadable. However, there is no refcounting done as I would prefer to do that a'la device_busy(9), rather than some "home-rolled" scheme. The point is pretty moot, as /dev/null is effectively compulsory. Reviewed by: dfr Notes: svn path=/head/; revision=62052