aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/devfs
Commit message (Expand)AuthorAgeFilesLines
* Allow user created symbolic links to cover device files and directoriesJaakko Heinonen2010-08-123-15/+56
* Enable shared lookups and externed shared ops for devfs.Konstantin Belousov2010-08-061-1/+2
* Add new make_dev_p(9) flag MAKEDEV_ETERNAL to inform devfs that createdKonstantin Belousov2010-08-062-30/+34
* Enable shared locks for the devfs vnodes. Honor the locking modeKonstantin Belousov2010-08-063-17/+20
* Initialize VV_ISTTY vnode flag on the devfs vnode creation instead ofKonstantin Belousov2010-08-061-4/+5
* Add a new function devfs_parent_dirent() for resolving devfs parentJaakko Heinonen2010-06-093-9/+32
* Don't try to call cdevsw d_close() method when devfs_close() is calledJaakko Heinonen2010-06-011-0/+7
* Add MAKEDEV_NOWAIT flag to make_dev_credf(9), to create a device nodeKonstantin Belousov2010-05-062-3/+8
* Revert r206560. The change doesn't work correctly in all cases withJaakko Heinonen2010-04-162-24/+0
* - Ignore and report duplicate and empty device names in devfs_populate_loop()Jaakko Heinonen2010-04-132-0/+24
* Properly use dev_refl()/dev_rel() in kern.devname.Ed Schouten2010-01-311-10/+13
* Let access overriding to TTYs depend on the cdev_priv, not the vnode.Ed Schouten2009-12-191-7/+18
* Improve nested jail awareness of devfs by handling credentials.Ed Schouten2009-06-201-0/+22
* VOP_IOCTL takes unlocked vnode as an argument. Due to this, v_data mayKonstantin Belousov2009-06-101-2/+10
* Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERICRobert Watson2009-06-053-6/+0
* Re-add opt_mac.h include, which is required in order for MNT_MULTILABELRobert Watson2009-06-041-0/+2
* Devfs replaces file ops vector with devfs-specific one in devfs_open(),Konstantin Belousov2009-05-151-1/+3
* Remove the thread argument from the FSD (File-System Dependent) parts ofAttilio Rao2009-05-113-22/+16
* Remove VOP_LEASE and supporting functions. This hasn't been used sinceRobert Watson2009-04-101-1/+0
* Enable advisory file locking for devfs vnodes.Konstantin Belousov2009-03-111-9/+0
* Extract the no_poll() and vop_nopoll() code into the common routineKonstantin Belousov2009-03-061-1/+1
* Remove unused local variables.Bjoern A. Zeeb2009-01-311-2/+1
* Mark most often used sysctl's as MPSAFE.Ed Schouten2009-01-281-2/+3
* Don't panic with "vinvalbuf: dirty bufs" when the mounted device that wasEdward Tomasz Napierala2009-01-081-2/+18
* Do not leak defs_de_interlock on error.Konstantin Belousov2008-12-121-1/+3
* Implement VOP_VPTOCNP for devfs. Directory and character device vnodes areJoe Marcus Clarke2008-12-121-0/+65
* Introduce accmode_t. This is required for NFSv4 ACLs - it will be neccessaryEdward Tomasz Napierala2008-10-281-1/+1
* Save previous content of the td_fpop before storing the currentKonstantin Belousov2008-09-261-12/+27
* Already initialize the vfs timestamps inside the cdev upon allocation.Ed Schouten2008-09-211-0/+4
* fdescfs, devfs, mqueuefs, nfs, portalfs, pseudofs, tmpfs and xfsKonstantin Belousov2008-09-201-2/+1
* Decontextualize the couplet VOP_GETATTR / VOP_SETATTR as the passed threadAttilio Rao2008-08-281-4/+6
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.Ed Schouten2008-08-201-3/+0
* Remove unnecessary locking around pointer fetch.Konstantin Belousov2008-08-121-2/+0
* Get pointer to devfs_ruleset struct after garbage collection has beenOleksandr Tymoshenko2008-06-221-3/+3
* Struct cdev is always the member of the struct cdev_priv. When devfsKonstantin Belousov2008-06-163-9/+10
* When devfs_allocv() committed to create new vnode, since de_vnode is NULL,Konstantin Belousov2008-06-051-1/+1
* Revert the changes I made to devfs_setattr() in r179457.Ed Schouten2008-06-011-4/+3
* Merge back devfs changes from the mpsafetty branch.Ed Schouten2008-05-311-6/+6
* When vget() fails (because the vnode has been reclaimed), there is noKonstantin Belousov2008-05-231-3/+4
* Implement the per-open file data for the cdev.Konstantin Belousov2008-05-212-1/+120
* Don't explicitly drop Giant around d_open/d_fdopen/d_close for MPSAFEJohn Baldwin2008-05-071-20/+5
* Do not dereference cdev->si_cdevsw, use the dev_refthread() to properlyKonstantin Belousov2008-03-201-5/+12
* Axe the 'thread' argument from VOP_ISLOCKED() and lockstatus() as it isAttilio Rao2008-02-251-1/+1
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-133-8/+6
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-102-6/+6
* Lock the vnode interlock while reading v_usecount to update si_usecountJohn Baldwin2008-01-081-0/+3
* Make ftruncate a 'struct file' operation rather than a vnode operation.John Baldwin2008-01-071-0/+8
* Remove explicit locking of struct file.Jeff Roberson2007-12-301-4/+1
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-242-8/+8
* When we do open, we should lock the vnode exclusively. This fixes few races:Pawel Jakub Dawidek2007-07-261-0/+1