aboutsummaryrefslogtreecommitdiff
path: root/sys/miscfs
Commit message (Expand)AuthorAgeFilesLines
* fix it so it compiles againMatt Jacob2001-04-232-0/+4
* Correct #includes to work with fixed sys/mount.h.Greg Lehey2001-04-234-0/+8
* - Various style fixes.John Baldwin2001-03-291-7/+3
* Convert the allproc and proctree locks from lockmgr locks to sx locks.John Baldwin2001-03-282-13/+14
* Catch up to header include changes:John Baldwin2001-03-283-0/+3
* o Change the API and ABI of the Extended Attribute kernel interfaces toRobert Watson2001-03-152-10/+15
* Fixes to track snapshot copy-on-write checking in the specinfoKirk McKusick2001-03-071-2/+2
* Proc locking identical to that of linprocfs' vnops except that we hold theJohn Baldwin2001-03-071-18/+59
* Protect read to p_pptr with proc lock rather than proctree lock.John Baldwin2001-03-071-2/+2
* Proc locking. Lock around psignal() and also ensure both an exclusiveJohn Baldwin2001-03-071-20/+34
* Protect p_flag with the proc lock.John Baldwin2001-03-073-3/+18
* Remove the copyinstr call which was trying to copy the pathname in fromDoug Rabson2001-03-031-3/+0
* Reviewed by: jlemonAdrian Chadd2001-03-015-12/+0
* o Move per-process jail pointer (p->pr_prison) to inside of the subjectRobert Watson2001-02-211-2/+2
* Extend kqueue down to the device layer.Jonathan Lemon2001-02-152-30/+55
* Change and clean the mutex lock interface.Bosko Milekic2001-02-094-22/+22
* Another round of the <sys/queue.h> FOREACH transmogriffer.Poul-Henning Kamp2001-02-041-2/+1
* Mechanical change to use <sys/queue.h> macro API instead ofPoul-Henning Kamp2001-02-045-6/+6
* Use <sys/queue.h> macro API.Poul-Henning Kamp2001-02-041-2/+1
* Add a BUF_KERNPROC() in the BIO_DELETE path.Poul-Henning Kamp2001-01-301-0/+1
* This patch reestablishes the spec_fsync() guarentee that synchronousMatthew Dillon2001-01-291-7/+16
* - Catch up to proc flag changes.John Baldwin2001-01-241-2/+6
* Fix breakage unconvered by LINT - dont refer to undefined variables inPeter Wemm2001-01-171-0/+2
* Don't compile a dead variable declaration.Garrett Wollman2001-01-091-0/+2
* Use macro API to <sys/queue.h>Poul-Henning Kamp2000-12-311-4/+4
* Fix a lockup problem that occurs with 'cvs update'. specfs's fsync canMatthew Dillon2000-12-301-0/+13
* Retire kernfs (kernel part).Dag-Erling Smørgrav2000-12-283-902/+0
* This implements a better launder limiting solution. There was a solutionMatthew Dillon2000-12-261-0/+2
* Protect proc.p_pptr and proc.p_children/p_sibling with theJake Burkholder2000-12-232-0/+16
* o Tighten restrictions on use of /proc/pid/ctl and move access checksRobert Watson2000-12-131-4/+10
* - Change the allproc_lock to use a macro, ALLPROC_LOCK(how), insteadJake Burkholder2000-12-131-1/+4
* Add a module version (so that linprocfs can properly depend on procfs)Dag-Erling Smørgrav2000-12-091-0/+1
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-3/+1
* Protect p_stat with the sched_lock.John Baldwin2000-12-021-1/+18
* Update to reflect the disappearance of getsock().Jonathan Lemon2000-11-251-2/+6
* More paranoia against overflowsEivind Eklund2000-11-081-18/+45
* Take VBLK devices further out of their missery.Poul-Henning Kamp2000-11-021-9/+2
* Fix overflow from jail hostname.Eivind Eklund2000-11-011-1/+1
* Give vop_mmap an untimely death. The opportunity to give it a timelyEivind Eklund2000-11-012-18/+0
* Move suser() and suser_xxx() prototypes and a related #define fromPoul-Henning Kamp2000-10-292-2/+0
* Remove unneeded #include <sys/proc.h> lines.Poul-Henning Kamp2000-10-295-5/+0
* Rev 1.41 was committed from wrong diff, now do it right.Boris Popov2000-10-221-1/+1
* Release and unlock vnode if resource deadlock detected.Boris Popov2000-10-221-0/+1
* Fix nullfs breakage caused by incomplete migration of v_interlock fromBoris Popov2000-10-151-3/+5
* o Move from Alfred Perstein's "exclusion" technique of handling specialChris Costello2000-10-093-78/+58
* Blow away the v_specmountpoint define, replacing it with what it wasEivind Eklund2000-10-091-5/+5
* return correct type for process directory entries, DT_DIR not DT_REGAlfred Perlstein2000-10-051-1/+1
* Convert lockmgr locks from using simple locks to using mutexes.Jason Evans2000-10-043-2/+7
* Prevent dereference of NULL pointer when null_lock() and null_unlock()Boris Popov2000-10-031-1/+7
* Fix vnode locking bugs in the nullfs.Boris Popov2000-09-253-98/+286