aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_cache.c
Commit message (Expand)AuthorAgeFilesLines
...
* Redo previous change using simpler patch that happens to be alsoAlexander Kabaev2009-04-141-9/+3
* Fix yet another negative dotodot entry fallout.Alexander Kabaev2009-04-141-0/+12
* Fix v_cache_dd handling for negative entries. v_cache_dd pointer wasAlexander Kabaev2009-04-111-13/+14
* When zapping v_cache_dd for !MAKEENTRY case in cache_lookup(), we shallKonstantin Belousov2009-04-111-0/+2
* Cache_lookup() for DOTDOT drops dvp vnode lock, allowing dvp to be reclaimed.Konstantin Belousov2009-04-101-1/+8
* Nul-terminate strings in the VFS name cache, which negligibly changeRobert Watson2009-04-071-10/+96
* Revert change 190655 temporarily. It breaks many setups where nullfs isAlexander Kabaev2009-04-041-1/+1
* vn_vptocnp() unlocks the name cache and forgets to re-lock it beforePeter Wemm2009-04-021-1/+1
* Replace v_dd vnode pointer with v_cache_dd pointer to struct namecacheAlexander Kabaev2009-03-291-33/+90
* When a file lookup fails due to encountering a doomed vnode from a forcedJohn Baldwin2009-03-241-3/+3
* Do not underflow the buffer and then report the problem. Check for theKonstantin Belousov2009-03-201-6/+6
* Remove unneeded braces to reduce used vertical screen space.Konstantin Belousov2009-03-201-2/+1
* Do not forget to adjust buflen for the first resolution of the pathKonstantin Belousov2009-03-201-1/+2
* The nc_nlen member of the struct namecache contains the length of the cachedKonstantin Belousov2009-03-201-1/+1
* When ktracing namei operations, log a result of the __getcwd().Konstantin Belousov2009-03-201-0/+9
* Remove unneeded braces to reduce used vertical screen space.Konstantin Belousov2009-03-201-4/+2
* Move the debug.hashstat sysctl tree under DIAGNOSTIC. I measured theJohn Baldwin2009-03-091-0/+2
* Enable caching of negative pathname lookups in the NFS client. To avoidJohn Baldwin2009-02-191-0/+18
* Convert the global mutex protecting the directory lookup name cache from aJohn Baldwin2009-01-281-46/+81
* - Mark all standalone INT/LONG/QUAD sysctl's MPSAFE. This is doneJohn Baldwin2009-01-231-6/+8
* Add a limit on namecache entries.Stephen McKay2009-01-201-0/+6
* In r185557, the check for existing negative entry for the given nameKonstantin Belousov2008-12-301-22/+11
* Do not KASSERT when vp->v_dd is NULL. Only directories which have had ".."Joe Marcus Clarke2008-12-231-1/+1
* Keep the hold on the vnode during VOP_VPTOCNP() call, allowing the vopKonstantin Belousov2008-12-231-1/+1
* Add a new VOP, VOP_VPTOCNP, which translates a vnode to its component nameJoe Marcus Clarke2008-12-121-24/+77
* Shared lookup makes it possible to create several negative cacheKonstantin Belousov2008-12-021-4/+11
* Move vn_fullpath1() outside of FILEDESC locking. This is being done inJoe Marcus Clarke2008-11-251-5/+21
* Part 1 of making shared lookups more resilient with respect to forcedJohn Baldwin2008-09-241-8/+18
* Sort includes.John Baldwin2008-09-181-8/+8
* Fix a race condition with concurrent LOOKUP namecache operations for a vnodeJohn Baldwin2008-08-231-9/+33
* Prevent crashes due to unlocked access to hash buckets in two sysctls.Alfred Perlstein2008-08-161-0/+4
* Currently, BSM audit pathname token generation for chrooted or jailedChristian S.J. Peron2008-07-311-0/+26
* - Use LK_TYPE_MASK where needed. Actually after sys/sys/lockmgr.h:1.69 it isPawel Jakub Dawidek2008-04-091-3/+5
* Add the utility function vn_commname() to retrieve the command nameKonstantin Belousov2008-03-311-0/+19
* In keeping with style(9)'s recommendations on macros, use a ';'Robert Watson2008-03-161-1/+1
* Axe the 'thread' argument from VOP_ISLOCKED() and lockstatus() as it isAttilio Rao2008-02-251-5/+3
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-1/+1
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-2/+2
* Remove remaining Giant acquisition around vn_fullpath1. This was missedKris Kennaway2007-11-221-2/+0
* Fix some locking cases where we ask for exclusively locked vnode, but we getPawel Jakub Dawidek2007-09-211-4/+17
* We only flush entries related to the given file system. Currently there arePawel Jakub Dawidek2007-06-181-3/+0
* To avoid a deadlock when handling .. directory during a lookup, we unlockPawel Jakub Dawidek2007-05-251-3/+6
* We no longer need to put namecache entries onto temporary mplist.Pawel Jakub Dawidek2007-05-251-11/+3
* The cache_leaf_test() function seems to be unused, so remove it.Pawel Jakub Dawidek2007-05-251-31/+0
* - Remove redundant initialization.Pawel Jakub Dawidek2007-05-221-2/+1
* Replace custom file descriptor array sleep lock constructed using a mutexRobert Watson2007-04-041-4/+4
* Further system call comment cleanup:Robert Watson2007-03-051-1/+1
* Axe Giant from vn_fullpath(9). The vnode -> pathname lookup should beChristian S.J. Peron2006-06-161-4/+0
* remove duplicate sizeof vnode entry (debug.sizeof.vnode already existed)...John-Mark Gurney2006-04-161-2/+2
* - Don't check v_mount for NULL to determine if a vnode has been recycled.Jeff Roberson2006-02-061-1/+1