aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
Commit message (Expand)AuthorAgeFilesLines
* Fixes to track snapshot copy-on-write checking in the specinfoKirk McKusick2001-03-071-2/+2
* Grab the process lock while calling psignal and before calling psignal.John Baldwin2001-03-072-0/+4
* 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
* A name of the file can change while its id stays the same. So, we haveBoris Popov2001-03-062-15/+5
* Remove the copyinstr call which was trying to copy the pathname in fromDoug Rabson2001-03-031-3/+0
* Reviewed by: jlemonAdrian Chadd2001-03-0111-46/+10
* Display the Joliet Extension 'level' in the log message.Alfred Perlstein2001-02-231-1/+1
* o Move per-process jail pointer (p->pr_prison) to inside of the subjectRobert Watson2001-02-211-2/+2
* Remove a debug printf.Poul-Henning Kamp2001-02-181-3/+1
* Extend kqueue down to the device layer.Jonathan Lemon2001-02-152-30/+55
* Add a hook for loading of a Unicode -> char conversion routine as a kld at aMaxim Sobolev2001-02-131-0/+12
* Change and clean the mutex lock interface.Bosko Milekic2001-02-0914-82/+82
* Fix typo: seperate -> separate.Jeroen Ruigrok van der Werven2001-02-062-2/+2
* 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-0410-17/+17
* Use <sys/queue.h> macro API.Poul-Henning Kamp2001-02-042-3/+2
* Remove a DIAGNOSTIC check which belongs in <sys/queue.h> if anyplace at all.Poul-Henning Kamp2001-02-042-8/+0
* At the point in time where most devices are created, we don't know whatPoul-Henning Kamp2001-02-022-1/+16
* Only superuser can create symlinks.Poul-Henning Kamp2001-02-021-2/+5
* Zap last remaining references to (and a use use of) of simple_locks.Peter Wemm2001-01-311-1/+1
* Add a BUF_KERNPROC() in the BIO_DELETE path.Poul-Henning Kamp2001-01-301-0/+1
* Fix two minor nits.Poul-Henning Kamp2001-01-302-2/+6
* This patch reestablishes the spec_fsync() guarentee that synchronousMatthew Dillon2001-01-291-7/+16
* Back out proc locking to protect p_ucred for obtaining additionalJohn Baldwin2001-01-273-38/+5
* 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