aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
Commit message (Expand)AuthorAgeFilesLines
* Convert all simplelocks to mutexes and remove the simplelock implementations.Jason Evans2001-01-248-64/+58
* - Catch up to proc flag changes.John Baldwin2001-01-241-2/+6
* The lock being destroyed was misnamed, not unused. Add the lockdestroy()John Baldwin2001-01-241-0/+2
* Proc locking to protect p_ucred while we obtain additional references.John Baldwin2001-01-241-2/+15
* - Remove unused header include.John Baldwin2001-01-231-5/+3
* Proc locking to protect p_ucred while we obtain an additional reference.John Baldwin2001-01-231-1/+9
* - FreeBSD doesn't have an abortop vnop as far as I can tell, so #ifdefJohn Baldwin2001-01-231-4/+2
* Fix breakage unconvered by LINT - dont refer to undefined variables inPeter Wemm2001-01-171-0/+2
* Delete unused #include <sys/select.h>.Garrett Wollman2001-01-095-6/+0
* Don't compile a dead variable declaration.Garrett Wollman2001-01-091-0/+2
* Use macro API to <sys/queue.h>Poul-Henning Kamp2000-12-312-6/+6
* Fix a lockup problem that occurs with 'cvs update'. specfs's fsync canMatthew Dillon2000-12-301-0/+13
* 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
* When p_ucred is passed to the venus daemon, first grab the proc lock toJohn Baldwin2000-12-151-2/+14
* 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-088-32/+17
* staticize.Poul-Henning Kamp2000-12-083-6/+7
* Protect accesses to member of struct proc with the proc lock.John Baldwin2000-12-063-2/+12
* 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
* Use vop_defaultop() instead of ntfs_bypass().Boris Popov2000-11-181-2/+6
* Missed conversion of CIRCLEQ => TAILQ for mount list.Kirk McKusick2000-11-141-1/+1
* More paranoia against overflowsEivind Eklund2000-11-081-18/+45
* v_interlock is a mutex now, not simple lock.Boris Popov2000-11-041-1/+1
* 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-015-21/+0
* Make malloc use M_ZERO in some more locations.David Malone2000-10-292-5/+2
* Move suser() and suser_xxx() prototypes and a related #define fromPoul-Henning Kamp2000-10-294-4/+0
* Weaken a bogus dependency on <sys/proc.h> in <sys/buf.h> by #ifdef'ingPoul-Henning Kamp2000-10-293-3/+0
* Remove unneeded #include <sys/proc.h> lines.Poul-Henning Kamp2000-10-2912-12/+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
* Update stale comment.Boris Popov2000-10-221-3/+1
* Remove de_lock field from denode structure and make msdosfs PDIRUNLOCK aware.Boris Popov2000-10-224-13/+27
* 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-76/+56
* Blow away the v_specmountpoint define, replacing it with what it wasEivind Eklund2000-10-095-16/+16
* Don't hold an extra reference to vnodes. Devfs vnodes are sufficientlyPoul-Henning Kamp2000-10-093-24/+28
* return correct type for process directory entries, DT_DIR not DT_REGAlfred Perlstein2000-10-051-1/+1
* Forward-declare struct mbuf so that this file is less self-insufficientBruce Evans2000-10-051-0/+1
* Convert lockmgr locks from using simple locks to using mutexes.Jason Evans2000-10-0421-30/+111
* Make cd9660 filesystem PDIRUNLOCK aware. Now it can be used in vnode stacksBoris Popov2000-10-034-9/+18
* Prevent dereference of NULL pointer when null_lock() and null_unlock()Boris Popov2000-10-031-1/+7
* Protect hash data with lock manager instead of home grown one.Boris Popov2000-10-024-71/+105
* Get rid from the legacy __P() macro. Remove 'register' keywords.Boris Popov2000-10-026-95/+99
* PDIRUNLOCK now exists on FreeBSD. Remove the (now incorrect) redefinition.Peter Wemm2000-10-021-4/+0