summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_cache.c
Commit message (Expand)AuthorAgeFilesLines
* Split up __getcwd so that kernel callers of the internal versionIan Dowse2002-09-021-18/+30
* - Move a VOP assert to the right place.Jeff Roberson2002-08-051-1/+1
* - Replace v_flag with v_iflag and v_vflagJeff Roberson2002-08-041-2/+4
* nuke caddr_t.Alfred Perlstein2002-06-281-5/+5
* Disable the shared locking namei() code for now. It breaks several stackingJeff Roberson2002-05-141-4/+4
* Turn #ifdef LOOKUP_SHARED into #ifndef LOOKUP_EXCLUSIVE to enable thisJeff Roberson2002-04-091-4/+4
* Remove a comment which relates to the old name cache code, whichDavid Malone2002-04-071-4/+0
* Remove __P.Alfred Perlstein2002-03-191-1/+1
* This patch adds the "LOCKSHARED" option to namei which causes it to only acqu...Jeff Roberson2002-03-121-0/+63
* Document all functions, global and static variables, and sysctls.Eivind Eklund2002-03-051-4/+17
* Remove cache_purgeleafdirs(), it has been #if 0 for quite some time.Poul-Henning Kamp2002-02-171-60/+0
* Include sys/_lock.h and sys/_mutex.h to reduce namespace pollution.Alfred Perlstein2002-01-131-0/+1
* SMP Lock struct file, filedesc and the global file list.Alfred Perlstein2002-01-131-0/+17
* Convert textvp_fullpath() into the more generic vn_fullpath() which takes aDag-Erling Smørgrav2001-10-211-9/+9
* After extensive testing it has been determined that adding complexityMatthew Dillon2001-10-011-0/+31
* KSE Milestone 2Julian Elischer2001-09-121-12/+12
* Fix a memory leak in __getcwd() that can occur after a filesystemIan Dowse2001-09-041-1/+3
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-0/+1
* Revert consequences of changes to mount.h, part 2.Greg Lehey2001-04-291-2/+0
* Correct #includes to work with fixed sys/mount.h.Greg Lehey2001-04-231-0/+2
* Reclaim directory vnodes held in namecache if few free vnodes areSeigo Tanimura2001-04-181-2/+66
* Create debug.hashstat.[raw]nchash and debug.hashstat.[raw]nfsnode toPeter Wemm2001-04-111-0/+80
* Use the same API as the example code.Peter Wemm2001-03-201-6/+8
* Use a generic implementation of the Fowler/Noll/Vo hash (FNV hash).Peter Wemm2001-03-171-13/+6
* Staticize some malloc M_ instances.Poul-Henning Kamp2000-12-081-1/+1
* Untangle vfsinit() a bit. Use seperate sysinit functions rather thanPeter Wemm2000-12-061-3/+5
* o Export nchstats ("VFS cache effectiveness statistics") usingRobert Watson2000-11-201-0/+4
* Add new flag PDIRUNLOCK to the component.cn_flags which should be set byBoris Popov2000-09-171-7/+18
* Change variable naming to be consistent with the rest of VFS code.Boris Popov2000-09-101-25/+23
* Support for unsigned integer and long sysctl variables. Update theJohn Baldwin2000-07-051-9/+6
* Back out the previous change to the queue(3) interface.Jake Burkholder2000-05-261-5/+5
* Change the way that the queue(3) structures are declared; don't assume thatJake Burkholder2000-05-231-5/+5
* Move procfs_fullpath() to vfs_cache.c, with a rename to textvp_fullpath().Brian Feldman2000-04-261-0/+110
* Move the declaration of "struct namecache" to vnode.h, as it can be usefulBrian Feldman2000-04-221-16/+0
* Avoid a panic in __getcwd(2) when combined with umount -f.Peter Wemm2000-02-141-0/+2
* Before we start to mess with the VFS name-cache clean things up a little bit:Poul-Henning Kamp1999-10-031-13/+142
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Fix a braino in the v_id wraparound code. Give more (current) detailsPoul-Henning Kamp1999-04-241-9/+17
* Don't use CTL_VFS at the wrong level. This caused loops in the sysctlBruce Evans1998-09-091-3/+2
* Removed some bogus casts.Bruce Evans1997-12-191-3/+3
* Remove a bunch of variables which were unused both in GENERIC and LINT.Poul-Henning Kamp1997-11-071-5/+2
* VFS mega cleanup commit (x/N)Poul-Henning Kamp1997-10-161-3/+2
* vnops megacommitPoul-Henning Kamp1997-10-151-3/+2
* Add one more counter so we can truly find out how good our name cachePoul-Henning Kamp1997-09-241-2/+7
* A couple of handles to tweak, more statistics.Poul-Henning Kamp1997-09-241-1/+31
* Revert to the previous hashing, double the hashtable size instead.Poul-Henning Kamp1997-09-041-4/+7
* Use 2^N hash sizes rather than primesize, this replaces a divisionPoul-Henning Kamp1997-09-031-12/+10
* Removed unused #includes.Bruce Evans1997-09-021-3/+1
* Change the 0xdeadb hack to a flag called VDOOMED.Poul-Henning Kamp1997-08-311-7/+8
* Uncut&paste cache_lookup().Poul-Henning Kamp1997-08-261-1/+84