| Commit message (Expand) | Author | Age | Files | Lines |
* | Correctly handle unlock for !MAKEENTRY case, after successfull attempt of | kib | 2009-08-14 | 1 | -1/+2 |
* | Add explicit struct ucred * argument for VOP_VPTOCNP, to be used by | kib | 2009-06-21 | 1 | -7/+9 |
* | Unlock the cache lock before returning when we run out of buffer space | marcus | 2009-06-05 | 1 | -1/+4 |
* | Unbreak the build. Add missed probes. | kib | 2009-05-31 | 1 | -6/+12 |
* | Eliminate code duplication in vn_fullpath1() around the cache lookups | kib | 2009-05-31 | 1 | -85/+75 |
* | More fallout from negative dotdot caching. Negative entries should | kan | 2009-04-17 | 1 | -8/+13 |
* | Redo previous change using simpler patch that happens to be also | kan | 2009-04-14 | 1 | -9/+3 |
* | Fix yet another negative dotodot entry fallout. | kan | 2009-04-14 | 1 | -0/+12 |
* | Fix v_cache_dd handling for negative entries. v_cache_dd pointer was | kan | 2009-04-11 | 1 | -13/+14 |
* | When zapping v_cache_dd for !MAKEENTRY case in cache_lookup(), we shall | kib | 2009-04-11 | 1 | -0/+2 |
* | Cache_lookup() for DOTDOT drops dvp vnode lock, allowing dvp to be reclaimed. | kib | 2009-04-10 | 1 | -1/+8 |
* | Nul-terminate strings in the VFS name cache, which negligibly change | rwatson | 2009-04-07 | 1 | -10/+96 |
* | Revert change 190655 temporarily. It breaks many setups where nullfs is | kan | 2009-04-04 | 1 | -1/+1 |
* | vn_vptocnp() unlocks the name cache and forgets to re-lock it before | peter | 2009-04-02 | 1 | -1/+1 |
* | Replace v_dd vnode pointer with v_cache_dd pointer to struct namecache | kan | 2009-03-29 | 1 | -33/+90 |
* | When a file lookup fails due to encountering a doomed vnode from a forced | jhb | 2009-03-24 | 1 | -3/+3 |
* | Do not underflow the buffer and then report the problem. Check for the | kib | 2009-03-20 | 1 | -6/+6 |
* | Remove unneeded braces to reduce used vertical screen space. | kib | 2009-03-20 | 1 | -2/+1 |
* | Do not forget to adjust buflen for the first resolution of the path | kib | 2009-03-20 | 1 | -1/+2 |
* | The nc_nlen member of the struct namecache contains the length of the cached | kib | 2009-03-20 | 1 | -1/+1 |
* | When ktracing namei operations, log a result of the __getcwd(). | kib | 2009-03-20 | 1 | -0/+9 |
* | Remove unneeded braces to reduce used vertical screen space. | kib | 2009-03-20 | 1 | -4/+2 |
* | Move the debug.hashstat sysctl tree under DIAGNOSTIC. I measured the | jhb | 2009-03-09 | 1 | -0/+2 |
* | Enable caching of negative pathname lookups in the NFS client. To avoid | jhb | 2009-02-19 | 1 | -0/+18 |
* | Convert the global mutex protecting the directory lookup name cache from a | jhb | 2009-01-28 | 1 | -46/+81 |
* | - Mark all standalone INT/LONG/QUAD sysctl's MPSAFE. This is done | jhb | 2009-01-23 | 1 | -6/+8 |
* | Add a limit on namecache entries. | mckay | 2009-01-20 | 1 | -0/+6 |
* | In r185557, the check for existing negative entry for the given name | kib | 2008-12-30 | 1 | -22/+11 |
* | Do not KASSERT when vp->v_dd is NULL. Only directories which have had ".." | marcus | 2008-12-23 | 1 | -1/+1 |
* | Keep the hold on the vnode during VOP_VPTOCNP() call, allowing the vop | kib | 2008-12-23 | 1 | -1/+1 |
* | Add a new VOP, VOP_VPTOCNP, which translates a vnode to its component name | marcus | 2008-12-12 | 1 | -24/+77 |
* | Shared lookup makes it possible to create several negative cache | kib | 2008-12-02 | 1 | -4/+11 |
* | Move vn_fullpath1() outside of FILEDESC locking. This is being done in | marcus | 2008-11-25 | 1 | -5/+21 |
* | Part 1 of making shared lookups more resilient with respect to forced | jhb | 2008-09-24 | 1 | -8/+18 |
* | Sort includes. | jhb | 2008-09-18 | 1 | -8/+8 |
* | Fix a race condition with concurrent LOOKUP namecache operations for a vnode | jhb | 2008-08-23 | 1 | -9/+33 |
* | Prevent crashes due to unlocked access to hash buckets in two sysctls. | alfred | 2008-08-16 | 1 | -0/+4 |
* | Currently, BSM audit pathname token generation for chrooted or jailed | csjp | 2008-07-31 | 1 | -0/+26 |
* | - Use LK_TYPE_MASK where needed. Actually after sys/sys/lockmgr.h:1.69 it is | pjd | 2008-04-09 | 1 | -3/+5 |
* | Add the utility function vn_commname() to retrieve the command name | kib | 2008-03-31 | 1 | -0/+19 |
* | In keeping with style(9)'s recommendations on macros, use a ';' | rwatson | 2008-03-16 | 1 | -1/+1 |
* | Axe the 'thread' argument from VOP_ISLOCKED() and lockstatus() as it is | attilio | 2008-02-25 | 1 | -5/+3 |
* | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | attilio | 2008-01-13 | 1 | -1/+1 |
* | vn_lock() is currently only used with the 'curthread' passed as argument. | attilio | 2008-01-10 | 1 | -2/+2 |
* | Remove remaining Giant acquisition around vn_fullpath1. This was missed | kris | 2007-11-22 | 1 | -2/+0 |
* | Fix some locking cases where we ask for exclusively locked vnode, but we get | pjd | 2007-09-21 | 1 | -4/+17 |
* | We only flush entries related to the given file system. Currently there are | pjd | 2007-06-18 | 1 | -3/+0 |
* | To avoid a deadlock when handling .. directory during a lookup, we unlock | pjd | 2007-05-25 | 1 | -3/+6 |
* | We no longer need to put namecache entries onto temporary mplist. | pjd | 2007-05-25 | 1 | -11/+3 |
* | The cache_leaf_test() function seems to be unused, so remove it. | pjd | 2007-05-25 | 1 | -31/+0 |