summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_subr.c
Commit message (Expand)AuthorAgeFilesLines
* In the routines vrele() and vput(), we must lock the vnode andmckusick2002-02-021-15/+15
* Remove 'VXLOCK: interlock avoided' warnings. This can now occur in normaldillon2002-01-191-0/+3
* When downgrading a filesystem from read-write to read-only, operationsmckusick2002-01-151-2/+7
* Add vlruvp() routine - implements LRU operation for vnode recycling.dillon2002-01-101-0/+46
* Fix type-o in previous commit (tsleep was using wrong rendezvous point)dillon2001-12-251-1/+1
* Fix a BUF_TIMELOCK race against BUF_LOCK and fix a deadlock in vget()dillon2001-12-201-1/+1
* Do not initialize static/global variables to 0. Use bss instead ofpeter2001-12-191-7/+7
* Use a different mechanism to get the vnlru process to wake up and noticepeter2001-12-191-4/+14
* This is a forward port of Peter's vlrureclaim() fix, with some minor modsdillon2001-12-181-8/+74
* A slightly different version of the vlrureclaim fix.dillon2001-12-141-3/+1
* If we were called to allocate a vnode that is not associated with apeter2001-12-131-0/+2
* Add mnt_reservedvnlist so we can MFC to 4.x, in order to make all mountdillon2001-11-041-0/+1
* Merge from POSIX.1e Capabilities development tree:rwatson2001-11-021-6/+17
* syncdelay, filedelay, dirdelay, metadelay are ints, not time_t's,dillon2001-10-271-4/+4
* Implement kern.maxvnodes. adjusting kern.maxvnodes now actually has adillon2001-10-261-36/+76
* Add missing TAILQ_INSERT_TAIL's which somehow didn't get comitted withdillon2001-10-251-0/+2
* Change the vnode list under the mount point from a LIST to a TAILQdillon2001-10-231-11/+12
* fix minor bug in kern.minvnodes sysctl. Use OID_AUTO.dillon2001-10-161-1/+1
* WS Cleanupdillon2001-10-081-4/+0
* vinvalbuf() was only waiting for write-I/O to complete. It really has todillon2001-10-051-4/+15
* After extensive testing it has been determined that adding complexitydillon2001-10-011-29/+68
* KSE Milestone 2julian2001-09-121-89/+90
* If a file has been completely unlinked, stop automatically syncing thepeter2001-08-271-0/+3
* Revert previous accidental commit. FWIW, it was part of enablingpeter2001-07-271-23/+0
* Fix cut/paste blunder. Serves me right for doing a last minute tweakpeter2001-07-271-0/+23
* With Alfred's permission, remove vm_mtx in favor of a fine-grained approachdillon2001-07-041-10/+6
* - Fix a mntvnode and vnode interlock reversal.jhb2001-06-281-6/+13
* Introduce a global lock for the vm subsystem (vm_mtx).alfred2001-05-191-1/+14
* Change the second argument of vflush() to an integer that specifiesiedowse2001-05-161-11/+45
* In vrele() and vput(), avoid triggering the confusing "missed vn_close"iedowse2001-05-111-2/+6
* vfs_subr.c is getting rather fat. The underlying repocopy and thisphk2001-04-261-346/+0
* Move the netexport structure from the fs-specific mountstructurephk2001-04-251-5/+61
* Correct #includes to work with fixed sys/mount.h.grog2001-04-231-0/+2
* Reclaim directory vnodes held in namecache if few free vnodes aretanimura2001-04-181-0/+26
* This patch removes the VOP_BWRITE() vector.phk2001-04-171-1/+1
* Add a NOTE_REVOKE flag for vnodes, which is triggered from within vclean().jlemon2001-02-231-0/+5
* Switch to using a struct xucred instead of a struct xucred when notgreen2001-02-181-2/+10
* Change and clean the mutex lock interface.bmilekic2001-02-091-87/+87
* Mechanical change to use <sys/queue.h> macro API instead ofphk2001-02-041-1/+1
* Properly lock new vnode.bp2001-01-311-4/+9
* Convert all simplelocks to mutexes and remove the simplelock implementations.jasone2001-01-241-55/+55
* o The move to using VADMIN under vaccess() resulted in some systemrwatson2001-01-231-1/+1
* Stick the kthread API in a kthread_* namespace, and the specialized kprocjhb2000-12-151-2/+2
* Use proper mutex locking when calling setrunnable from speedup_syncer().mckusick2000-12-131-3/+2
* Convert more malloc+bzero to malloc+M_ZERO.dwmalone2000-12-081-4/+2
* Untangle vfsinit() a bit. Use seperate sysinit functions rather thanpeter2000-12-061-2/+4
* Correct int/long type mismatch in the proper place this time. freevnodesgallatin2000-12-021-3/+3
* Use msleep() instead of mtx_exit()/tsleep() so that we release the lock andjhb2000-12-011-13/+7
* Get rid of a bogus mtx_exit (it was attempting to release anmckusick2000-11-301-1/+0
* Implement a low-memory deadlock solution.dillon2000-11-181-4/+10
OpenPOWER on IntegriCloud