aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_conf.c
Commit message (Expand)AuthorAgeFilesLines
* sys/kern: adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Undo r309891. Konstantin is right in that this condition normallyEdward Tomasz Napierala2016-12-121-3/+0
* Avoid dereferencing NULL pointers in devtoname(). I've seen it panic,Edward Tomasz Napierala2016-12-121-0/+3
* Provide yet another KPI for cdev creation, make_dev_s(9).Konstantin Belousov2016-01-071-23/+75
* Fix for out of order device destruction notifications when using theHans Petter Selasky2015-03-221-2/+18
* Stop enforcing additional reference on all cdevs, which was introducedKonstantin Belousov2015-01-191-5/+28
* Avoid race with "dev_rel()" when using the recently addedHans Petter Selasky2015-01-141-2/+0
* Add a kernel function to delist our kernel character devices, so thatHans Petter Selasky2015-01-141-0/+17
* Adjust printf format specifiers for dev_t and ino_t in kernel.Gleb Kurtsou2014-12-171-1/+2
* Remove global device lock acquisition from dev_relthread(), replacing itAlexander Motin2013-10-221-5/+3
* Reject spaces and double quotation marks in device names. devctl(4)Jaakko Heinonen2012-12-221-0/+7
* Remove unused SI_* flags.Ed Schouten2012-08-281-3/+0
* Remove D_NEEDGIANT from dead_devsw. biofinish() (and thus dead_strategy)John Baldwin2012-08-161-1/+0
* MFprojects/zfsd:Alexander Motin2012-05-241-3/+4
* Remove unneeded newline. It fits in 80 columns now.Ed Schouten2012-02-101-2/+1
* Merge si_name and __si_namebuf.Ed Schouten2012-02-101-7/+7
* Use TASK_INITIALIZER() for dev_dtr_task rather than a dedicated SYSINIT().John Baldwin2011-12-221-10/+2
* Style.Konstantin Belousov2011-11-111-2/+1
* Guard against the unlikely case of the alias path containing the '%' symbols.Konstantin Belousov2011-11-111-1/+1
* Fix the devmtx lock leak from make_dev(9) when the old device cloningKonstantin Belousov2011-07-301-1/+2
* sys/sys/conf.h:Justin T. Gibbs2011-06-141-0/+62
* The CDP_ACTIVE flag is cleared at the beginning of destroy_devl(),Konstantin Belousov2011-05-181-1/+2
* Add make_dev_alias_p() function. It is similar to make_dev_alias(),Andrey V. Elsukov2011-05-031-10/+51
* Fix race in devfs by using LIST_FIRST() instead ofHans Petter Selasky2010-12-111-2/+2
* Add missing curly brackets. By chance, the missing brackets didn't alterJaakko Heinonen2010-11-071-1/+2
* Check the device name validity on device registration.Jaakko Heinonen2010-10-071-27/+87
* Add "show cdev" ddb command.Konstantin Belousov2010-08-061-0/+68
* Add new make_dev_p(9) flag MAKEDEV_ETERNAL to inform devfs that createdKonstantin Belousov2010-08-061-43/+76
* Remove the unit argument from the recently added make_dev_p().Ed Schouten2010-06-171-2/+2
* Correct the function name in a KASSERT.Jaakko Heinonen2010-06-161-1/+1
* Add another variation of make_dev(9), make_dev_p(9), that is allowedKonstantin Belousov2010-06-121-24/+53
* When make_dev_credf(MAKEDEV_WAITOK) is called, useKonstantin Belousov2010-06-121-4/+4
* Add MAKEDEV_NOWAIT flag to make_dev_credf(9), to create a device nodeKonstantin Belousov2010-05-061-19/+28
* Fix several style issues.Konstantin Belousov2010-02-271-2/+5
* Update d_mmap() to accept vm_ooffset_t and vm_memattr_t.Robert Noland2009-12-291-13/+7
* (S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument.Antoine Brodin2009-12-281-1/+1
* Extend the device pager to support different memory attributes on differentJohn Baldwin2009-08-281-4/+10
* Add an extension to the character device interface that allows characterJohn Baldwin2009-06-011-2/+27
* Move the M_WAITOK flag in notify() into an M_NOWAIT one in order to matchAttilio Rao2009-05-211-1/+3
* Remove dead code from devtoname().Ed Schouten2009-04-151-18/+1
* Remove unneeded variable and casting from newdev().Ed Schouten2009-04-151-5/+3
* Don't use si_drv0 directly.Ed Schouten2009-04-151-2/+2
* Extract the no_poll() and vop_nopoll() code into the common routineKonstantin Belousov2009-03-061-11/+1
* Explicitely note that destroy_dev() sleeps.Konstantin Belousov2008-11-271-0/+1
* Move uminor() and umajor() to the same place as userspace minor() and major().Ed Schouten2008-09-271-14/+0
* Replace all calls to minor() with dev2unit().Ed Schouten2008-09-271-3/+3
* Rename the `minor' argument of make_dev(9) to `unit'.Ed Schouten2008-09-261-9/+9
* Remove unit2minor() use from kernel code.Ed Schouten2008-09-261-1/+1
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.Ed Schouten2008-08-201-11/+0
* Make it atomic for the devfs_populate_loop() to see the setting ofKonstantin Belousov2008-07-111-1/+2