| Commit message (Expand) | Author | Age | Files | Lines |
* | Reject spaces and double quotation marks in device names. devctl(4) | jh | 2012-12-22 | 1 | -0/+7 |
* | Remove unused SI_* flags. | ed | 2012-08-28 | 1 | -3/+0 |
* | Remove D_NEEDGIANT from dead_devsw. biofinish() (and thus dead_strategy) | jhb | 2012-08-16 | 1 | -1/+0 |
* | MFprojects/zfsd: | mav | 2012-05-24 | 1 | -3/+4 |
* | Remove unneeded newline. It fits in 80 columns now. | ed | 2012-02-10 | 1 | -2/+1 |
* | Merge si_name and __si_namebuf. | ed | 2012-02-10 | 1 | -7/+7 |
* | Use TASK_INITIALIZER() for dev_dtr_task rather than a dedicated SYSINIT(). | jhb | 2011-12-22 | 1 | -10/+2 |
* | Style. | kib | 2011-11-11 | 1 | -2/+1 |
* | Guard against the unlikely case of the alias path containing the '%' symbols. | kib | 2011-11-11 | 1 | -1/+1 |
* | Fix the devmtx lock leak from make_dev(9) when the old device cloning | kib | 2011-07-30 | 1 | -1/+2 |
* | sys/sys/conf.h: | gibbs | 2011-06-14 | 1 | -0/+62 |
* | The CDP_ACTIVE flag is cleared at the beginning of destroy_devl(), | kib | 2011-05-18 | 1 | -1/+2 |
* | Add make_dev_alias_p() function. It is similar to make_dev_alias(), | ae | 2011-05-03 | 1 | -10/+51 |
* | Fix race in devfs by using LIST_FIRST() instead of | hselasky | 2010-12-11 | 1 | -2/+2 |
* | Add missing curly brackets. By chance, the missing brackets didn't alter | jh | 2010-11-07 | 1 | -1/+2 |
* | Check the device name validity on device registration. | jh | 2010-10-07 | 1 | -27/+87 |
* | Add "show cdev" ddb command. | kib | 2010-08-06 | 1 | -0/+68 |
* | Add new make_dev_p(9) flag MAKEDEV_ETERNAL to inform devfs that created | kib | 2010-08-06 | 1 | -43/+76 |
* | Remove the unit argument from the recently added make_dev_p(). | ed | 2010-06-17 | 1 | -2/+2 |
* | Correct the function name in a KASSERT. | jh | 2010-06-16 | 1 | -1/+1 |
* | Add another variation of make_dev(9), make_dev_p(9), that is allowed | kib | 2010-06-12 | 1 | -24/+53 |
* | When make_dev_credf(MAKEDEV_WAITOK) is called, use | kib | 2010-06-12 | 1 | -4/+4 |
* | Add MAKEDEV_NOWAIT flag to make_dev_credf(9), to create a device node | kib | 2010-05-06 | 1 | -19/+28 |
* | Fix several style issues. | kib | 2010-02-27 | 1 | -2/+5 |
* | Update d_mmap() to accept vm_ooffset_t and vm_memattr_t. | rnoland | 2009-12-29 | 1 | -13/+7 |
* | (S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. | antoine | 2009-12-28 | 1 | -1/+1 |
* | Extend the device pager to support different memory attributes on different | jhb | 2009-08-28 | 1 | -4/+10 |
* | Add an extension to the character device interface that allows character | jhb | 2009-06-01 | 1 | -2/+27 |
* | Move the M_WAITOK flag in notify() into an M_NOWAIT one in order to match | attilio | 2009-05-21 | 1 | -1/+3 |
* | Remove dead code from devtoname(). | ed | 2009-04-15 | 1 | -18/+1 |
* | Remove unneeded variable and casting from newdev(). | ed | 2009-04-15 | 1 | -5/+3 |
* | Don't use si_drv0 directly. | ed | 2009-04-15 | 1 | -2/+2 |
* | Extract the no_poll() and vop_nopoll() code into the common routine | kib | 2009-03-06 | 1 | -11/+1 |
* | Explicitely note that destroy_dev() sleeps. | kib | 2008-11-27 | 1 | -0/+1 |
* | Move uminor() and umajor() to the same place as userspace minor() and major(). | ed | 2008-09-27 | 1 | -14/+0 |
* | Replace all calls to minor() with dev2unit(). | ed | 2008-09-27 | 1 | -3/+3 |
* | Rename the `minor' argument of make_dev(9) to `unit'. | ed | 2008-09-26 | 1 | -9/+9 |
* | Remove unit2minor() use from kernel code. | ed | 2008-09-26 | 1 | -1/+1 |
* | Integrate the new MPSAFE TTY layer to the FreeBSD operating system. | ed | 2008-08-20 | 1 | -11/+0 |
* | Make it atomic for the devfs_populate_loop() to see the setting of | kib | 2008-07-11 | 1 | -1/+2 |
* | Struct cdev is always the member of the struct cdev_priv. When devfs | kib | 2008-06-16 | 1 | -6/+6 |
* | Turn dev2unit(), minor(), unit2minor() and minor2unit() into macro's. | ed | 2008-06-12 | 1 | -35/+0 |
* | Don't enforce unique device minor number policy anymore. | ed | 2008-06-11 | 1 | -4/+9 |
* | Remove the distinction between device minor and unit numbers. | ed | 2008-05-29 | 1 | -11/+8 |
* | Assert that si_threadcount > 0 before decrementing it. This helps catching | kib | 2008-05-23 | 1 | -0/+2 |
* | Implement the per-open file data for the cdev. | kib | 2008-05-21 | 1 | -2/+9 |
* | Add the devctl notifications for the cdev create/destroy events. | kib | 2008-05-14 | 1 | -0/+42 |
* | Add two missed chunks from the rev. 1.210, for the giant_read() and | kib | 2008-04-02 | 1 | -4/+2 |
* | Fix two races in the handling of the d_gianttrick for the D_NEEDGIANT | kib | 2008-03-17 | 1 | -35/+121 |
* | Apply a workaround for the unkillable jail problem where some devices created | thompsa | 2007-12-05 | 1 | -0/+2 |