aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_conf.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Struct cdev is always the member of the struct cdev_priv. When devfsKonstantin Belousov2008-06-161-6/+6
* Turn dev2unit(), minor(), unit2minor() and minor2unit() into macro's.Ed Schouten2008-06-121-35/+0
* Don't enforce unique device minor number policy anymore.Ed Schouten2008-06-111-4/+9
* Remove the distinction between device minor and unit numbers.Ed Schouten2008-05-291-11/+8
* Assert that si_threadcount > 0 before decrementing it. This helps catchingKonstantin Belousov2008-05-231-0/+2
* Implement the per-open file data for the cdev.Konstantin Belousov2008-05-211-2/+9
* Add the devctl notifications for the cdev create/destroy events.Konstantin Belousov2008-05-141-0/+42
* Add two missed chunks from the rev. 1.210, for the giant_read() andKonstantin Belousov2008-04-021-4/+2
* Fix two races in the handling of the d_gianttrick for the D_NEEDGIANTKonstantin Belousov2008-03-171-35/+121
* Apply a workaround for the unkillable jail problem where some devices createdAndrew Thompson2007-12-051-0/+2
* Revert destroy_dev() to the state before destroy_dev_sched() was introduced.Konstantin Belousov2007-07-051-8/+2
* Since cdev mutex is after system map mutex in global lock order, free()Konstantin Belousov2007-07-041-0/+2
* Rev. 1.204 and 1.205 got an erronous version of destroy_dev() thatKonstantin Belousov2007-07-031-6/+18
* Automatically detect deadlock condition in destroy_dev(), that is, ifKonstantin Belousov2007-07-031-2/+8