aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/devfs/devfs_devs.c
Commit message (Expand)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/7.0.0_cvscvs2svn2008-02-241-1/+1
* Rename mac*devfsdirent*() to mac*devfs*() to synchronize with SEDarwin,Robert Watson2007-04-231-2/+2
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* Properly lock the vnode around vgone() calls.Konstantin Belousov2006-10-181-15/+45
* Resolve the devfs deadlock caused by LOR between devfs_mount->dm_lock andKonstantin Belousov2006-09-181-1/+12
* Remove the NDEVFSINO and NDEVFSOVERFLOW options which no longer exists inPoul-Henning Kamp2006-07-171-1/+0
* - We must hold a reference to a vnode before calling vgone() otherwiseJeff Roberson2006-02-221-0/+2
* Rewamp DEVFS internals pretty severely [1].Poul-Henning Kamp2005-09-191-255/+291
* Don't attempt to recurse lockmgr, it doesn't like it.Poul-Henning Kamp2005-09-151-2/+0
* Various minor polishing.Poul-Henning Kamp2005-09-151-6/+5
* Close a race which could result in unwarranted "ruleset %d alreadyPoul-Henning Kamp2005-09-151-0/+4
* Collect the devfs related sysctls in one placePoul-Henning Kamp2005-08-161-0/+32
* Create a new internal .h file to communicate very private stuffPoul-Henning Kamp2005-08-161-0/+1
* Eliminate effectively unused dm_basedir field from devfs_mount.Poul-Henning Kamp2005-08-151-1/+1
* When devfs cloning takes place, provide access to the credential of theRobert Watson2005-07-141-1/+2
* cdev (still) needs per instance uid/gid/modePoul-Henning Kamp2005-03-311-3/+3
* Prepare for the final onslaught on devices:Poul-Henning Kamp2005-03-171-3/+3
* Try to fix the mess I made of devname, with the minimal subset of thePoul-Henning Kamp2005-03-101-4/+5
* Make a SYSCTL_NODE staticPoul-Henning Kamp2005-02-101-1/+1
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Reduce a fair bit of the atomics because we are now called with aPoul-Henning Kamp2004-06-181-73/+55
* Do the dreaded s/dev_t/struct cdev */Poul-Henning Kamp2004-06-161-11/+11
* White-space align a struct definition.Poul-Henning Kamp2004-02-151-11/+0
* NODEVFS cleanup:Poul-Henning Kamp2003-03-021-4/+3
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-5/+5
* NODEVFS cleanup: remove #ifdefs.Poul-Henning Kamp2003-01-291-2/+0
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-5/+5
* Originally when DEVFS was added, a global variable "devfs_present"Poul-Henning Kamp2003-01-191-1/+0
* Remove dm_root entry from struct devfs_mount. It's never set, and isRobert Watson2002-12-091-3/+3
* s/struct dev_t */dev_t */Poul-Henning Kamp2002-09-281-1/+1
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-07-311-0/+15
* Introduce the DEVFS "rule" subsystem. DEVFS rules permit theDima Dorfman2002-07-171-0/+2
* Add a new sysinit SI_SUB_DEVFS. Devfs hooks into the kernel at SI_ORDER_FIRST,Mike Smith2002-01-091-1/+1
* Use a sysinit to initialise the devfs hooks in kern_conf.c rather than commonMike Smith2002-01-091-3/+10
* Use vfs_timestamp() instead of getnanotime() directly.Poul-Henning Kamp2001-11-031-3/+3
* KSE Milestone 2Julian Elischer2001-09-121-2/+2
* Create a general facility for making dev_t's depend on anotherPoul-Henning Kamp2001-05-261-1/+1
* Convert DEVFS from an "opt-in" to an "opt-out" option.Poul-Henning Kamp2001-05-131-0/+2
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-4/+5
* At the point in time where most devices are created, we don't know whatPoul-Henning Kamp2001-02-021-1/+1
* Fix two minor nits.Poul-Henning Kamp2001-01-301-1/+2
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-8/+4
* staticize.Poul-Henning Kamp2000-12-081-2/+5
* Remove unneeded #include <sys/proc.h> lines.Poul-Henning Kamp2000-10-291-1/+0
* Don't hold an extra reference to vnodes. Devfs vnodes are sufficientlyPoul-Henning Kamp2000-10-091-10/+6
* Add refcounts to the "global" DEVFS inode slots, this allows usPoul-Henning Kamp2000-09-061-23/+211
* Avoid the modules madness I inadvertently introduced by making thePoul-Henning Kamp2000-09-021-25/+3
* Reorder vop's alphabetically.Poul-Henning Kamp2000-08-271-16/+27
* Fix panic when removing open device (found by bp@)Poul-Henning Kamp2000-08-241-23/+56
* Fix devfs_access() bug on directories.Poul-Henning Kamp2000-08-211-3/+0