2014-06-16 16:28:10 +04:00
|
|
|
/* $NetBSD: vfs_cache.c,v 1.99 2014/06/16 12:28:10 joerg Exp $ */
|
2008-04-11 19:25:24 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2008 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-06-08 15:28:29 +04:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1994-12-13 12:14:34 +03:00
|
|
|
* @(#)vfs_cache.c 8.3 (Berkeley) 8/22/94
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
2014-06-16 16:28:10 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: vfs_cache.c,v 1.99 2014/06/16 12:28:10 joerg Exp $");
|
2001-11-12 18:25:01 +03:00
|
|
|
|
2000-11-24 10:25:50 +03:00
|
|
|
#include "opt_ddb.h"
|
2001-03-30 02:39:23 +04:00
|
|
|
#include "opt_revcache.h"
|
2000-11-24 10:25:50 +03:00
|
|
|
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2014-06-04 01:16:15 +04:00
|
|
|
#include <sys/sysctl.h>
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/errno.h>
|
1998-09-01 08:33:56 +04:00
|
|
|
#include <sys/pool.h>
|
2007-02-10 00:55:00 +03:00
|
|
|
#include <sys/mutex.h>
|
2008-04-11 19:25:24 +04:00
|
|
|
#include <sys/atomic.h>
|
|
|
|
#include <sys/kthread.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/cpu.h>
|
|
|
|
#include <sys/evcnt.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2006-10-25 22:56:38 +04:00
|
|
|
#define NAMECACHE_ENTER_REVERSE
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Name caching works as follows:
|
|
|
|
*
|
|
|
|
* Names found by directory scans are retained in a cache
|
|
|
|
* for future reference. It is managed LRU, so frequently
|
|
|
|
* used names will hang around. Cache is indexed by hash value
|
1999-09-05 18:22:34 +04:00
|
|
|
* obtained from (dvp, name) where dvp refers to the directory
|
1993-03-21 12:45:37 +03:00
|
|
|
* containing name.
|
|
|
|
*
|
|
|
|
* For simplicity (and economy of storage), names longer than
|
|
|
|
* a maximum length of NCHNAMLEN are not cached; they occur
|
|
|
|
* infrequently in any case, and are almost never of interest.
|
|
|
|
*
|
|
|
|
* Upon reaching the last segment of a path, if the reference
|
|
|
|
* is for DELETE, or NOCACHE is set (rewrite), and the
|
|
|
|
* name is located in the cache, it will be dropped.
|
1999-09-05 18:22:34 +04:00
|
|
|
* The entry is dropped also when it was not possible to lock
|
|
|
|
* the cached vnode, either because vget() failed or the generation
|
|
|
|
* number has changed while waiting for the lock.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2008-06-03 19:50:22 +04:00
|
|
|
/*
|
|
|
|
* Per-cpu namecache data.
|
|
|
|
*/
|
|
|
|
struct nchcpu {
|
|
|
|
kmutex_t cpu_lock;
|
|
|
|
struct nchstats cpu_stats;
|
|
|
|
};
|
|
|
|
|
2012-11-05 21:24:09 +04:00
|
|
|
/*
|
|
|
|
* The type for the hash code. While the hash function generates a
|
|
|
|
* u32, the hash code has historically been passed around as a u_long,
|
|
|
|
* and the value is modified by xor'ing a uintptr_t, so it's not
|
|
|
|
* entirely clear what the best type is. For now I'll leave it
|
|
|
|
* unchanged as u_long.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef u_long nchash_t;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Structures associated with name cacheing.
|
|
|
|
*/
|
2012-07-22 04:53:18 +04:00
|
|
|
|
|
|
|
static kmutex_t *namecache_lock __read_mostly;
|
|
|
|
static pool_cache_t namecache_cache __read_mostly;
|
|
|
|
static TAILQ_HEAD(, namecache) nclruhead __cacheline_aligned;
|
|
|
|
|
|
|
|
static LIST_HEAD(nchashhead, namecache) *nchashtbl __read_mostly;
|
|
|
|
static u_long nchash __read_mostly;
|
|
|
|
|
2012-11-05 21:24:09 +04:00
|
|
|
#define NCHASH2(hash, dvp) \
|
|
|
|
(((hash) ^ ((uintptr_t)(dvp) >> 3)) & nchash)
|
1999-03-22 20:01:55 +03:00
|
|
|
|
2012-07-22 04:53:18 +04:00
|
|
|
static LIST_HEAD(ncvhashhead, namecache) *ncvhashtbl __read_mostly;
|
|
|
|
static u_long ncvhash __read_mostly;
|
|
|
|
|
2003-07-31 19:13:05 +04:00
|
|
|
#define NCVHASH(vp) (((uintptr_t)(vp) >> 3) & ncvhash)
|
1999-03-22 20:01:55 +03:00
|
|
|
|
2012-07-22 04:53:18 +04:00
|
|
|
/* Number of cache entries allocated. */
|
|
|
|
static long numcache __cacheline_aligned;
|
2008-04-11 19:25:24 +04:00
|
|
|
|
2012-07-22 04:53:18 +04:00
|
|
|
/* Garbage collection queue and number of entries pending in it. */
|
|
|
|
static void *cache_gcqueue;
|
|
|
|
static u_int cache_gcpend;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2012-07-22 04:53:18 +04:00
|
|
|
/* Cache effectiveness statistics. */
|
|
|
|
struct nchstats nchstats __cacheline_aligned;
|
|
|
|
#define COUNT(c,x) (c.x++)
|
1998-09-01 08:33:56 +04:00
|
|
|
|
2012-07-22 04:53:18 +04:00
|
|
|
static const int cache_lowat = 95;
|
|
|
|
static const int cache_hiwat = 98;
|
|
|
|
static const int cache_hottime = 5; /* number of seconds */
|
|
|
|
static int doingcache = 1; /* 1 => enable the cache */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
static struct evcnt cache_ev_scan;
|
|
|
|
static struct evcnt cache_ev_gc;
|
|
|
|
static struct evcnt cache_ev_over;
|
|
|
|
static struct evcnt cache_ev_under;
|
|
|
|
static struct evcnt cache_ev_forced;
|
|
|
|
|
|
|
|
static void cache_invalidate(struct namecache *);
|
2012-07-22 04:53:18 +04:00
|
|
|
static struct namecache *cache_lookup_entry(
|
2012-11-05 21:27:37 +04:00
|
|
|
const struct vnode *, const char *, size_t);
|
2008-04-11 19:25:24 +04:00
|
|
|
static void cache_thread(void *);
|
|
|
|
static void cache_invalidate(struct namecache *);
|
|
|
|
static void cache_disassociate(struct namecache *);
|
|
|
|
static void cache_reclaim(void);
|
|
|
|
static int cache_ctor(void *, void *, int);
|
|
|
|
static void cache_dtor(void *, void *);
|
2003-07-30 16:09:46 +04:00
|
|
|
|
2012-11-05 21:24:09 +04:00
|
|
|
/*
|
|
|
|
* Compute the hash for an entry.
|
|
|
|
*
|
|
|
|
* (This is for now a wrapper around namei_hash, whose interface is
|
|
|
|
* for the time being slightly inconvenient.)
|
|
|
|
*/
|
|
|
|
static nchash_t
|
2012-11-05 21:27:37 +04:00
|
|
|
cache_hash(const char *name, size_t namelen)
|
2012-11-05 21:24:09 +04:00
|
|
|
{
|
|
|
|
const char *endptr;
|
|
|
|
|
2012-11-05 21:27:37 +04:00
|
|
|
endptr = name + namelen;
|
|
|
|
return namei_hash(name, &endptr);
|
2012-11-05 21:24:09 +04:00
|
|
|
}
|
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
/*
|
|
|
|
* Invalidate a cache entry and enqueue it for garbage collection.
|
|
|
|
*/
|
2003-07-30 16:09:46 +04:00
|
|
|
static void
|
2008-04-11 19:25:24 +04:00
|
|
|
cache_invalidate(struct namecache *ncp)
|
2003-07-30 16:09:46 +04:00
|
|
|
{
|
2008-04-11 19:25:24 +04:00
|
|
|
void *head;
|
2003-07-30 16:09:46 +04:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
KASSERT(mutex_owned(&ncp->nc_lock));
|
2003-07-30 16:09:46 +04:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
if (ncp->nc_dvp != NULL) {
|
|
|
|
ncp->nc_vp = NULL;
|
|
|
|
ncp->nc_dvp = NULL;
|
|
|
|
do {
|
|
|
|
head = cache_gcqueue;
|
|
|
|
ncp->nc_gcqueue = head;
|
|
|
|
} while (atomic_cas_ptr(&cache_gcqueue, head, ncp) != head);
|
|
|
|
atomic_inc_uint(&cache_gcpend);
|
|
|
|
}
|
|
|
|
}
|
2003-07-30 16:09:46 +04:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
/*
|
|
|
|
* Disassociate a namecache entry from any vnodes it is attached to,
|
|
|
|
* and remove from the global LRU list.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
cache_disassociate(struct namecache *ncp)
|
|
|
|
{
|
|
|
|
|
|
|
|
KASSERT(mutex_owned(namecache_lock));
|
|
|
|
KASSERT(ncp->nc_dvp == NULL);
|
|
|
|
|
|
|
|
if (ncp->nc_lru.tqe_prev != NULL) {
|
|
|
|
TAILQ_REMOVE(&nclruhead, ncp, nc_lru);
|
|
|
|
ncp->nc_lru.tqe_prev = NULL;
|
2003-07-30 16:09:46 +04:00
|
|
|
}
|
|
|
|
if (ncp->nc_vhash.le_prev != NULL) {
|
|
|
|
LIST_REMOVE(ncp, nc_vhash);
|
|
|
|
ncp->nc_vhash.le_prev = NULL;
|
|
|
|
}
|
|
|
|
if (ncp->nc_vlist.le_prev != NULL) {
|
|
|
|
LIST_REMOVE(ncp, nc_vlist);
|
|
|
|
ncp->nc_vlist.le_prev = NULL;
|
|
|
|
}
|
|
|
|
if (ncp->nc_dvlist.le_prev != NULL) {
|
|
|
|
LIST_REMOVE(ncp, nc_dvlist);
|
|
|
|
ncp->nc_dvlist.le_prev = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
/*
|
|
|
|
* Lock all CPUs to prevent any cache lookup activity. Conceptually,
|
|
|
|
* this locks out all "readers".
|
|
|
|
*/
|
2014-06-03 23:42:17 +04:00
|
|
|
#define UPDATE(f) do { \
|
|
|
|
nchstats.f += cpup->cpu_stats.f; \
|
|
|
|
cpup->cpu_stats.f = 0; \
|
|
|
|
} while (/* CONSTCOND */ 0)
|
|
|
|
|
2003-07-30 16:09:46 +04:00
|
|
|
static void
|
2008-04-11 19:25:24 +04:00
|
|
|
cache_lock_cpus(void)
|
2003-07-30 16:09:46 +04:00
|
|
|
{
|
2008-04-11 19:25:24 +04:00
|
|
|
CPU_INFO_ITERATOR cii;
|
|
|
|
struct cpu_info *ci;
|
2008-06-03 19:50:22 +04:00
|
|
|
struct nchcpu *cpup;
|
2003-07-30 16:09:46 +04:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
for (CPU_INFO_FOREACH(cii, ci)) {
|
2008-06-03 19:50:22 +04:00
|
|
|
cpup = ci->ci_data.cpu_nch;
|
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2014-06-03 23:42:17 +04:00
|
|
|
UPDATE(ncs_goodhits);
|
|
|
|
UPDATE(ncs_neghits);
|
|
|
|
UPDATE(ncs_badhits);
|
|
|
|
UPDATE(ncs_falsehits);
|
|
|
|
UPDATE(ncs_miss);
|
|
|
|
UPDATE(ncs_long);
|
|
|
|
UPDATE(ncs_pass2);
|
|
|
|
UPDATE(ncs_2passes);
|
|
|
|
UPDATE(ncs_revhits);
|
|
|
|
UPDATE(ncs_revmiss);
|
2008-04-11 19:25:24 +04:00
|
|
|
}
|
2003-07-30 16:09:46 +04:00
|
|
|
}
|
|
|
|
|
2014-06-03 23:42:17 +04:00
|
|
|
#undef UPDATE
|
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
/*
|
|
|
|
* Release all CPU locks.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
cache_unlock_cpus(void)
|
|
|
|
{
|
|
|
|
CPU_INFO_ITERATOR cii;
|
|
|
|
struct cpu_info *ci;
|
2008-06-03 19:50:22 +04:00
|
|
|
struct nchcpu *cpup;
|
2008-04-11 19:25:24 +04:00
|
|
|
|
|
|
|
for (CPU_INFO_FOREACH(cii, ci)) {
|
2008-06-03 19:50:22 +04:00
|
|
|
cpup = ci->ci_data.cpu_nch;
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2008-04-11 19:25:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-06-16 16:28:10 +04:00
|
|
|
* Find a single cache entry and return it locked.
|
2008-04-11 19:25:24 +04:00
|
|
|
*/
|
|
|
|
static struct namecache *
|
2012-11-05 21:27:37 +04:00
|
|
|
cache_lookup_entry(const struct vnode *dvp, const char *name, size_t namelen)
|
2004-04-05 14:20:52 +04:00
|
|
|
{
|
|
|
|
struct nchashhead *ncpp;
|
|
|
|
struct namecache *ncp;
|
2012-11-05 21:24:09 +04:00
|
|
|
nchash_t hash;
|
2004-04-05 14:20:52 +04:00
|
|
|
|
2009-02-18 16:36:11 +03:00
|
|
|
KASSERT(dvp != NULL);
|
2014-06-16 16:28:10 +04:00
|
|
|
KASSERT(mutex_owned(namecache_lock));
|
2012-11-05 21:27:37 +04:00
|
|
|
hash = cache_hash(name, namelen);
|
2012-11-05 21:24:09 +04:00
|
|
|
ncpp = &nchashtbl[NCHASH2(hash, dvp)];
|
2004-04-05 14:20:52 +04:00
|
|
|
|
|
|
|
LIST_FOREACH(ncp, ncpp, nc_hash) {
|
2008-04-11 19:25:24 +04:00
|
|
|
if (ncp->nc_dvp != dvp ||
|
2012-11-05 21:27:37 +04:00
|
|
|
ncp->nc_nlen != namelen ||
|
|
|
|
memcmp(ncp->nc_name, name, (u_int)ncp->nc_nlen))
|
2008-04-11 19:25:24 +04:00
|
|
|
continue;
|
|
|
|
mutex_enter(&ncp->nc_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
if (__predict_true(ncp->nc_dvp == dvp)) {
|
2008-04-11 19:25:24 +04:00
|
|
|
ncp->nc_hittime = hardclock_ticks;
|
|
|
|
return ncp;
|
|
|
|
}
|
|
|
|
/* Raced: entry has been nullified. */
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
2004-04-05 14:20:52 +04:00
|
|
|
}
|
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
return NULL;
|
2004-04-05 14:20:52 +04:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Look for a the name in the cache. We don't do this
|
|
|
|
* if the segment name is long, simply so the cache can avoid
|
|
|
|
* holding long names (which would either waste space, or
|
|
|
|
* add greatly to the complexity).
|
|
|
|
*
|
2012-11-05 21:24:09 +04:00
|
|
|
* Lookup is called with DVP pointing to the directory to search,
|
|
|
|
* and CNP providing the name of the entry being sought: cn_nameptr
|
|
|
|
* is the name, cn_namelen is its length, and cn_flags is the flags
|
|
|
|
* word from the namei operation.
|
|
|
|
*
|
|
|
|
* DVP must be locked.
|
|
|
|
*
|
|
|
|
* There are three possible non-error return states:
|
|
|
|
* 1. Nothing was found in the cache. Nothing is known about
|
|
|
|
* the requested name.
|
|
|
|
* 2. A negative entry was found in the cache, meaning that the
|
|
|
|
* requested name definitely does not exist.
|
|
|
|
* 3. A positive entry was found in the cache, meaning that the
|
|
|
|
* requested name does exist and that we are providing the
|
|
|
|
* vnode.
|
|
|
|
* In these cases the results are:
|
|
|
|
* 1. 0 returned; VN is set to NULL.
|
|
|
|
* 2. 1 returned; VN is set to NULL.
|
|
|
|
* 3. 1 returned; VN is set to the vnode found.
|
|
|
|
*
|
|
|
|
* The additional result argument ISWHT is set to zero, unless a
|
|
|
|
* negative entry is found that was entered as a whiteout, in which
|
|
|
|
* case ISWHT is set to one.
|
|
|
|
*
|
|
|
|
* The ISWHT_RET argument pointer may be null. In this case an
|
|
|
|
* assertion is made that the whiteout flag is not set. File systems
|
|
|
|
* that do not support whiteouts can/should do this.
|
|
|
|
*
|
|
|
|
* Filesystems that do support whiteouts should add ISWHITEOUT to
|
|
|
|
* cnp->cn_flags if ISWHT comes back nonzero.
|
|
|
|
*
|
|
|
|
* When a vnode is returned, it is locked, as per the vnode lookup
|
|
|
|
* locking protocol.
|
|
|
|
*
|
|
|
|
* There is no way for this function to fail, in the sense of
|
|
|
|
* generating an error that requires aborting the namei operation.
|
|
|
|
*
|
|
|
|
* (Prior to October 2012, this function returned an integer status,
|
|
|
|
* and a vnode, and mucked with the flags word in CNP for whiteouts.
|
|
|
|
* The integer status was -1 for "nothing found", ENOENT for "a
|
|
|
|
* negative entry found", 0 for "a positive entry found", and possibly
|
|
|
|
* other errors, and the value of VN might or might not have been set
|
|
|
|
* depending on what error occurred.)
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-06-08 15:28:29 +04:00
|
|
|
int
|
2012-11-05 21:27:37 +04:00
|
|
|
cache_lookup(struct vnode *dvp, const char *name, size_t namelen,
|
|
|
|
uint32_t nameiop, uint32_t cnflags,
|
2012-11-05 21:24:09 +04:00
|
|
|
int *iswht_ret, struct vnode **vn_ret)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct namecache *ncp;
|
1999-09-05 18:22:34 +04:00
|
|
|
struct vnode *vp;
|
2008-06-03 19:50:22 +04:00
|
|
|
struct nchcpu *cpup;
|
2002-08-26 05:21:58 +04:00
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2012-11-05 21:24:09 +04:00
|
|
|
/* Establish default result values */
|
|
|
|
if (iswht_ret != NULL) {
|
|
|
|
*iswht_ret = 0;
|
|
|
|
}
|
|
|
|
*vn_ret = NULL;
|
|
|
|
|
2008-06-03 19:50:22 +04:00
|
|
|
if (__predict_false(!doingcache)) {
|
2012-11-05 21:24:09 +04:00
|
|
|
return 0;
|
1994-07-05 23:09:32 +04:00
|
|
|
}
|
2003-02-15 00:39:46 +03:00
|
|
|
|
2008-06-03 19:50:22 +04:00
|
|
|
cpup = curcpu()->ci_data.cpu_nch;
|
2012-11-05 21:27:37 +04:00
|
|
|
if (__predict_false(namelen > NCHNAMLEN)) {
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_long);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2014-06-16 16:28:10 +04:00
|
|
|
mutex_enter(namecache_lock);
|
2012-11-05 21:27:37 +04:00
|
|
|
ncp = cache_lookup_entry(dvp, name, namelen);
|
2014-06-16 16:28:10 +04:00
|
|
|
mutex_exit(namecache_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
if (__predict_false(ncp == NULL)) {
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_miss);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2012-11-05 21:27:37 +04:00
|
|
|
if ((cnflags & MAKEENTRY) == 0) {
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_badhits);
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
/*
|
|
|
|
* Last component and we are renaming or deleting,
|
|
|
|
* the cache entry is invalid, or otherwise don't
|
|
|
|
* want cache entry to exist.
|
|
|
|
*/
|
|
|
|
cache_invalidate(ncp);
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ncp->nc_vp == NULL) {
|
|
|
|
if (iswht_ret != NULL) {
|
|
|
|
/*
|
|
|
|
* Restore the ISWHITEOUT flag saved earlier.
|
|
|
|
*/
|
|
|
|
KASSERT((ncp->nc_flags & ~ISWHITEOUT) == 0);
|
|
|
|
*iswht_ret = (ncp->nc_flags & ISWHITEOUT) != 0;
|
|
|
|
} else {
|
|
|
|
KASSERT(ncp->nc_flags == 0);
|
|
|
|
}
|
|
|
|
|
2012-11-05 21:27:37 +04:00
|
|
|
if (__predict_true(nameiop != CREATE ||
|
|
|
|
(cnflags & ISLASTCN) == 0)) {
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_neghits);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_exit(&ncp->nc_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found neg entry; vn is already null from above */
|
|
|
|
return 1;
|
1999-09-05 18:22:34 +04:00
|
|
|
} else {
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_badhits);
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
/*
|
|
|
|
* Last component and we are renaming or
|
|
|
|
* deleting, the cache entry is invalid,
|
|
|
|
* or otherwise don't want cache entry to
|
|
|
|
* exist.
|
|
|
|
*/
|
|
|
|
cache_invalidate(ncp);
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
1999-09-05 18:22:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vp = ncp->nc_vp;
|
2013-10-29 13:53:51 +04:00
|
|
|
mutex_enter(vp->v_interlock);
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
error = vget(vp, LK_NOWAIT);
|
|
|
|
if (error) {
|
|
|
|
KASSERT(error == EBUSY);
|
|
|
|
/*
|
|
|
|
* This vnode is being cleaned out.
|
|
|
|
* XXX badhits?
|
|
|
|
*/
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2013-10-29 13:53:51 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_falsehits);
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2013-10-29 13:53:51 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
2008-06-03 19:50:22 +04:00
|
|
|
}
|
2003-02-15 00:39:46 +03:00
|
|
|
|
2003-08-09 00:18:19 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
/*
|
2008-04-11 19:25:24 +04:00
|
|
|
* since we released nb->nb_lock,
|
2003-08-09 00:18:19 +04:00
|
|
|
* we can't use this pointer any more.
|
|
|
|
*/
|
|
|
|
ncp = NULL;
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2012-11-05 21:24:09 +04:00
|
|
|
/* We don't have the right lock, but this is only for stats. */
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_goodhits);
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
|
|
|
|
/* found it */
|
|
|
|
*vn_ret = vp;
|
|
|
|
return 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2004-06-27 12:50:44 +04:00
|
|
|
int
|
2012-11-05 21:27:37 +04:00
|
|
|
cache_lookup_raw(struct vnode *dvp, const char *name, size_t namelen,
|
|
|
|
uint32_t cnflags,
|
2012-11-05 21:24:09 +04:00
|
|
|
int *iswht_ret, struct vnode **vn_ret)
|
2004-06-27 12:50:44 +04:00
|
|
|
{
|
|
|
|
struct namecache *ncp;
|
|
|
|
struct vnode *vp;
|
2008-06-03 19:50:22 +04:00
|
|
|
struct nchcpu *cpup;
|
2004-06-27 12:50:44 +04:00
|
|
|
int error;
|
|
|
|
|
2012-11-05 21:24:09 +04:00
|
|
|
/* Establish default results. */
|
|
|
|
if (iswht_ret != NULL) {
|
|
|
|
*iswht_ret = 0;
|
|
|
|
}
|
|
|
|
*vn_ret = NULL;
|
|
|
|
|
2008-06-03 19:50:22 +04:00
|
|
|
if (__predict_false(!doingcache)) {
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
2004-06-27 12:50:44 +04:00
|
|
|
}
|
|
|
|
|
2008-06-03 19:50:22 +04:00
|
|
|
cpup = curcpu()->ci_data.cpu_nch;
|
2012-11-05 21:27:37 +04:00
|
|
|
if (__predict_false(namelen > NCHNAMLEN)) {
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_long);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
2004-06-27 12:50:44 +04:00
|
|
|
}
|
2014-06-16 16:28:10 +04:00
|
|
|
mutex_enter(namecache_lock);
|
2012-11-05 21:27:37 +04:00
|
|
|
ncp = cache_lookup_entry(dvp, name, namelen);
|
2014-06-16 16:28:10 +04:00
|
|
|
mutex_exit(namecache_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
if (__predict_false(ncp == NULL)) {
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_miss);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
2004-06-27 12:50:44 +04:00
|
|
|
}
|
|
|
|
vp = ncp->nc_vp;
|
|
|
|
if (vp == NULL) {
|
|
|
|
/*
|
|
|
|
* Restore the ISWHITEOUT flag saved earlier.
|
|
|
|
*/
|
2012-11-05 21:24:09 +04:00
|
|
|
if (iswht_ret != NULL) {
|
|
|
|
KASSERT((ncp->nc_flags & ~ISWHITEOUT) == 0);
|
|
|
|
/*cnp->cn_flags |= ncp->nc_flags;*/
|
|
|
|
*iswht_ret = (ncp->nc_flags & ISWHITEOUT) != 0;
|
|
|
|
}
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-06-03 19:50:22 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_neghits);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_exit(&ncp->nc_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
/* found negative entry; vn is already null from above */
|
|
|
|
return 1;
|
2004-06-27 12:50:44 +04:00
|
|
|
}
|
2013-10-29 13:53:51 +04:00
|
|
|
mutex_enter(vp->v_interlock);
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
error = vget(vp, LK_NOWAIT);
|
|
|
|
if (error) {
|
|
|
|
KASSERT(error == EBUSY);
|
|
|
|
/*
|
|
|
|
* This vnode is being cleaned out.
|
|
|
|
* XXX badhits?
|
|
|
|
*/
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2013-10-29 13:53:51 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_falsehits);
|
2014-06-14 20:12:34 +04:00
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2013-10-29 13:53:51 +04:00
|
|
|
/* found nothing */
|
|
|
|
return 0;
|
2004-06-27 12:50:44 +04:00
|
|
|
}
|
|
|
|
|
2008-10-25 18:20:17 +04:00
|
|
|
/* Unlocked, but only for stats. */
|
2014-06-16 16:28:10 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
2008-10-25 18:20:17 +04:00
|
|
|
COUNT(cpup->cpu_stats, ncs_goodhits); /* XXX can be "badhits" */
|
2014-06-16 16:28:10 +04:00
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2012-11-05 21:24:09 +04:00
|
|
|
|
|
|
|
/* found it */
|
|
|
|
*vn_ret = vp;
|
|
|
|
return 1;
|
2004-06-27 12:50:44 +04:00
|
|
|
}
|
|
|
|
|
1999-03-22 20:01:55 +03:00
|
|
|
/*
|
|
|
|
* Scan cache looking for name of directory entry pointing at vp.
|
|
|
|
*
|
2010-07-21 13:01:35 +04:00
|
|
|
* If the lookup succeeds the vnode is referenced and stored in dvpp.
|
1999-03-22 20:01:55 +03:00
|
|
|
*
|
|
|
|
* If bufp is non-NULL, also place the name in the buffer which starts
|
|
|
|
* at bufp, immediately before *bpp, and move bpp backwards to point
|
|
|
|
* at the start of it. (Yes, this is a little baroque, but it's done
|
|
|
|
* this way to cater to the whims of getcwd).
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on cache miss, positive errno on failure.
|
|
|
|
*/
|
|
|
|
int
|
2001-12-10 04:49:26 +03:00
|
|
|
cache_revlookup(struct vnode *vp, struct vnode **dvpp, char **bpp, char *bufp)
|
1999-03-22 20:01:55 +03:00
|
|
|
{
|
|
|
|
struct namecache *ncp;
|
|
|
|
struct vnode *dvp;
|
2014-06-03 23:30:29 +04:00
|
|
|
struct nchcpu *cpup;
|
1999-03-22 20:01:55 +03:00
|
|
|
struct ncvhashhead *nvcpp;
|
2001-12-10 04:49:26 +03:00
|
|
|
char *bp;
|
2010-07-21 13:01:35 +04:00
|
|
|
int error, nlen;
|
2001-12-10 04:49:26 +03:00
|
|
|
|
1999-03-22 20:01:55 +03:00
|
|
|
if (!doingcache)
|
|
|
|
goto out;
|
|
|
|
|
2001-09-24 10:01:13 +04:00
|
|
|
nvcpp = &ncvhashtbl[NCVHASH(vp)];
|
2014-06-03 23:30:29 +04:00
|
|
|
cpup = curcpu()->ci_data.cpu_nch;
|
1999-03-22 20:01:55 +03:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(namecache_lock);
|
2000-11-24 08:02:23 +03:00
|
|
|
LIST_FOREACH(ncp, nvcpp, nc_vhash) {
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(&ncp->nc_lock);
|
2001-12-10 04:49:26 +03:00
|
|
|
if (ncp->nc_vp == vp &&
|
|
|
|
(dvp = ncp->nc_dvp) != NULL &&
|
2003-07-30 16:10:57 +04:00
|
|
|
dvp != vp) { /* avoid pesky . entries.. */
|
2001-12-10 04:49:26 +03:00
|
|
|
|
1999-03-22 20:01:55 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
2001-12-10 04:49:26 +03:00
|
|
|
if (ncp->nc_nlen == 1 &&
|
|
|
|
ncp->nc_name[0] == '.')
|
1999-03-22 20:01:55 +03:00
|
|
|
panic("cache_revlookup: found entry for .");
|
|
|
|
|
2001-12-10 04:49:26 +03:00
|
|
|
if (ncp->nc_nlen == 2 &&
|
|
|
|
ncp->nc_name[0] == '.' &&
|
|
|
|
ncp->nc_name[1] == '.')
|
1999-03-22 20:01:55 +03:00
|
|
|
panic("cache_revlookup: found entry for ..");
|
|
|
|
#endif
|
2014-06-03 23:30:29 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
|
|
|
COUNT(cpup->cpu_stats, ncs_revhits);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2010-07-21 13:01:35 +04:00
|
|
|
nlen = ncp->nc_nlen;
|
1999-03-22 20:01:55 +03:00
|
|
|
|
|
|
|
if (bufp) {
|
|
|
|
bp = *bpp;
|
2010-07-21 13:01:35 +04:00
|
|
|
bp -= nlen;
|
1999-03-22 20:01:55 +03:00
|
|
|
if (bp <= bufp) {
|
2001-12-10 04:49:26 +03:00
|
|
|
*dvpp = NULL;
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
mutex_exit(namecache_lock);
|
2001-12-10 04:49:26 +03:00
|
|
|
return (ERANGE);
|
1999-03-22 20:01:55 +03:00
|
|
|
}
|
2010-07-21 13:01:35 +04:00
|
|
|
memcpy(bp, ncp->nc_name, nlen);
|
1999-03-22 20:01:55 +03:00
|
|
|
*bpp = bp;
|
|
|
|
}
|
2001-12-10 04:49:26 +03:00
|
|
|
|
2013-10-29 13:53:51 +04:00
|
|
|
mutex_enter(dvp->v_interlock);
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
mutex_exit(namecache_lock);
|
|
|
|
error = vget(dvp, LK_NOWAIT);
|
|
|
|
if (error) {
|
|
|
|
KASSERT(error == EBUSY);
|
|
|
|
if (bufp)
|
|
|
|
(*bpp) += nlen;
|
|
|
|
*dvpp = NULL;
|
|
|
|
return -1;
|
2010-07-21 13:01:35 +04:00
|
|
|
}
|
1999-03-22 20:01:55 +03:00
|
|
|
*dvpp = dvp;
|
2001-12-10 04:49:26 +03:00
|
|
|
return (0);
|
1999-03-22 20:01:55 +03:00
|
|
|
}
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_exit(&ncp->nc_lock);
|
1999-03-22 20:01:55 +03:00
|
|
|
}
|
2014-06-03 23:30:29 +04:00
|
|
|
mutex_enter(&cpup->cpu_lock);
|
|
|
|
COUNT(cpup->cpu_stats, ncs_revmiss);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_exit(namecache_lock);
|
1999-03-22 20:01:55 +03:00
|
|
|
out:
|
2001-12-10 04:49:26 +03:00
|
|
|
*dvpp = NULL;
|
|
|
|
return (-1);
|
1999-03-22 20:01:55 +03:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Add an entry to the cache
|
|
|
|
*/
|
1996-02-04 05:17:43 +03:00
|
|
|
void
|
2012-11-05 21:27:37 +04:00
|
|
|
cache_enter(struct vnode *dvp, struct vnode *vp,
|
|
|
|
const char *name, size_t namelen, uint32_t cnflags)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct namecache *ncp;
|
2004-05-07 16:05:41 +04:00
|
|
|
struct namecache *oncp;
|
2000-03-30 13:27:11 +04:00
|
|
|
struct nchashhead *ncpp;
|
|
|
|
struct ncvhashhead *nvcpp;
|
2012-11-05 21:24:09 +04:00
|
|
|
nchash_t hash;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2012-07-22 04:53:18 +04:00
|
|
|
/* First, check whether we can/should add a cache entry. */
|
2012-11-05 21:27:37 +04:00
|
|
|
if ((cnflags & MAKEENTRY) == 0 ||
|
|
|
|
__predict_false(namelen > NCHNAMLEN || !doingcache)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
2012-07-22 04:53:18 +04:00
|
|
|
}
|
2008-04-11 19:25:24 +04:00
|
|
|
|
|
|
|
if (numcache > desiredvnodes) {
|
|
|
|
mutex_enter(namecache_lock);
|
|
|
|
cache_ev_forced.ev_count++;
|
|
|
|
cache_reclaim();
|
|
|
|
mutex_exit(namecache_lock);
|
2003-02-15 00:39:46 +03:00
|
|
|
}
|
2004-05-02 16:00:34 +04:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
ncp = pool_cache_get(namecache_cache, PR_WAITOK);
|
|
|
|
mutex_enter(namecache_lock);
|
|
|
|
numcache++;
|
|
|
|
|
2004-05-07 16:05:41 +04:00
|
|
|
/*
|
|
|
|
* Concurrent lookups in the same directory may race for a
|
|
|
|
* cache entry. if there's a duplicated entry, free it.
|
|
|
|
*/
|
2012-11-05 21:27:37 +04:00
|
|
|
oncp = cache_lookup_entry(dvp, name, namelen);
|
2004-05-07 16:05:41 +04:00
|
|
|
if (oncp) {
|
2008-04-11 19:25:24 +04:00
|
|
|
cache_invalidate(oncp);
|
|
|
|
mutex_exit(&oncp->nc_lock);
|
2004-05-07 16:05:41 +04:00
|
|
|
}
|
|
|
|
|
2001-12-10 04:49:26 +03:00
|
|
|
/* Grab the vnode we just found. */
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(&ncp->nc_lock);
|
1994-06-08 15:28:29 +04:00
|
|
|
ncp->nc_vp = vp;
|
2008-04-11 19:25:24 +04:00
|
|
|
ncp->nc_flags = 0;
|
|
|
|
ncp->nc_hittime = 0;
|
|
|
|
ncp->nc_gcqueue = NULL;
|
2003-07-30 16:10:57 +04:00
|
|
|
if (vp == NULL) {
|
1995-05-30 13:02:02 +04:00
|
|
|
/*
|
|
|
|
* For negative hits, save the ISWHITEOUT flag so we can
|
|
|
|
* restore it later when the cache entry is used again.
|
|
|
|
*/
|
2012-11-05 21:27:37 +04:00
|
|
|
ncp->nc_flags = cnflags & ISWHITEOUT;
|
1995-05-30 13:02:02 +04:00
|
|
|
}
|
2012-07-22 04:53:18 +04:00
|
|
|
|
2001-12-10 04:49:26 +03:00
|
|
|
/* Fill in cache info. */
|
1994-06-08 15:28:29 +04:00
|
|
|
ncp->nc_dvp = dvp;
|
2003-07-30 16:09:46 +04:00
|
|
|
LIST_INSERT_HEAD(&dvp->v_dnclist, ncp, nc_dvlist);
|
|
|
|
if (vp)
|
|
|
|
LIST_INSERT_HEAD(&vp->v_nclist, ncp, nc_vlist);
|
2008-04-11 19:25:24 +04:00
|
|
|
else {
|
|
|
|
ncp->nc_vlist.le_prev = NULL;
|
|
|
|
ncp->nc_vlist.le_next = NULL;
|
|
|
|
}
|
2012-11-05 21:27:37 +04:00
|
|
|
KASSERT(namelen <= NCHNAMLEN);
|
|
|
|
ncp->nc_nlen = namelen;
|
|
|
|
memcpy(ncp->nc_name, name, (unsigned)ncp->nc_nlen);
|
2012-07-22 04:53:18 +04:00
|
|
|
TAILQ_INSERT_TAIL(&nclruhead, ncp, nc_lru);
|
2012-11-05 21:27:37 +04:00
|
|
|
hash = cache_hash(name, namelen);
|
2012-11-05 21:24:09 +04:00
|
|
|
ncpp = &nchashtbl[NCHASH2(hash, dvp)];
|
2008-04-11 19:25:24 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Flush updates before making visible in table. No need for a
|
|
|
|
* memory barrier on the other side: to see modifications the
|
|
|
|
* list must be followed, meaning a dependent pointer load.
|
2008-04-12 21:34:26 +04:00
|
|
|
* The below is LIST_INSERT_HEAD() inlined, with the memory
|
|
|
|
* barrier included in the correct place.
|
2008-04-11 19:25:24 +04:00
|
|
|
*/
|
2008-04-12 21:34:26 +04:00
|
|
|
if ((ncp->nc_hash.le_next = ncpp->lh_first) != NULL)
|
|
|
|
ncpp->lh_first->nc_hash.le_prev = &ncp->nc_hash.le_next;
|
|
|
|
ncp->nc_hash.le_prev = &ncpp->lh_first;
|
2008-04-11 19:25:24 +04:00
|
|
|
membar_producer();
|
2008-04-12 21:34:26 +04:00
|
|
|
ncpp->lh_first = ncp;
|
1999-03-22 20:01:55 +03:00
|
|
|
|
2001-12-10 04:49:26 +03:00
|
|
|
ncp->nc_vhash.le_prev = NULL;
|
|
|
|
ncp->nc_vhash.le_next = NULL;
|
|
|
|
|
1999-03-22 20:01:55 +03:00
|
|
|
/*
|
|
|
|
* Create reverse-cache entries (used in getcwd) for directories.
|
2006-10-25 22:56:38 +04:00
|
|
|
* (and in linux procfs exe node)
|
1999-03-22 20:01:55 +03:00
|
|
|
*/
|
2001-12-08 07:09:56 +03:00
|
|
|
if (vp != NULL &&
|
|
|
|
vp != dvp &&
|
2001-03-30 02:39:23 +04:00
|
|
|
#ifndef NAMECACHE_ENTER_REVERSE
|
2001-12-08 07:09:56 +03:00
|
|
|
vp->v_type == VDIR &&
|
2001-03-30 02:39:23 +04:00
|
|
|
#endif
|
2001-12-08 07:09:56 +03:00
|
|
|
(ncp->nc_nlen > 2 ||
|
|
|
|
(ncp->nc_nlen > 1 && ncp->nc_name[1] != '.') ||
|
|
|
|
(/* ncp->nc_nlen > 0 && */ ncp->nc_name[0] != '.'))) {
|
2001-09-24 10:01:13 +04:00
|
|
|
nvcpp = &ncvhashtbl[NCVHASH(vp)];
|
1999-03-22 20:01:55 +03:00
|
|
|
LIST_INSERT_HEAD(nvcpp, ncp, nc_vhash);
|
|
|
|
}
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
mutex_exit(namecache_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Name cache initialization, from vfs_init() when we are booting
|
|
|
|
*/
|
1996-02-04 05:17:43 +03:00
|
|
|
void
|
2001-12-10 04:49:26 +03:00
|
|
|
nchinit(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-04-11 19:25:24 +04:00
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2012-07-22 04:53:18 +04:00
|
|
|
TAILQ_INIT(&nclruhead);
|
2008-04-11 19:25:24 +04:00
|
|
|
namecache_cache = pool_cache_init(sizeof(struct namecache),
|
|
|
|
coherency_unit, 0, 0, "ncache", NULL, IPL_NONE, cache_ctor,
|
|
|
|
cache_dtor, NULL);
|
2007-11-07 03:23:13 +03:00
|
|
|
KASSERT(namecache_cache != NULL);
|
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
namecache_lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE);
|
|
|
|
|
2008-05-05 21:11:16 +04:00
|
|
|
nchashtbl = hashinit(desiredvnodes, HASH_LIST, true, &nchash);
|
2000-11-08 17:28:12 +03:00
|
|
|
ncvhashtbl =
|
2001-03-30 02:39:23 +04:00
|
|
|
#ifdef NAMECACHE_ENTER_REVERSE
|
2008-05-05 21:11:16 +04:00
|
|
|
hashinit(desiredvnodes, HASH_LIST, true, &ncvhash);
|
2001-03-30 02:39:23 +04:00
|
|
|
#else
|
2008-05-05 21:11:16 +04:00
|
|
|
hashinit(desiredvnodes/8, HASH_LIST, true, &ncvhash);
|
2001-03-30 02:39:23 +04:00
|
|
|
#endif
|
2008-04-11 19:25:24 +04:00
|
|
|
|
|
|
|
error = kthread_create(PRI_VM, KTHREAD_MPSAFE, NULL, cache_thread,
|
|
|
|
NULL, NULL, "cachegc");
|
|
|
|
if (error != 0)
|
|
|
|
panic("nchinit %d", error);
|
|
|
|
|
|
|
|
evcnt_attach_dynamic(&cache_ev_scan, EVCNT_TYPE_MISC, NULL,
|
|
|
|
"namecache", "entries scanned");
|
|
|
|
evcnt_attach_dynamic(&cache_ev_gc, EVCNT_TYPE_MISC, NULL,
|
|
|
|
"namecache", "entries collected");
|
|
|
|
evcnt_attach_dynamic(&cache_ev_over, EVCNT_TYPE_MISC, NULL,
|
|
|
|
"namecache", "over scan target");
|
|
|
|
evcnt_attach_dynamic(&cache_ev_under, EVCNT_TYPE_MISC, NULL,
|
|
|
|
"namecache", "under scan target");
|
|
|
|
evcnt_attach_dynamic(&cache_ev_forced, EVCNT_TYPE_MISC, NULL,
|
|
|
|
"namecache", "forced reclaims");
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
cache_ctor(void *arg, void *obj, int flag)
|
|
|
|
{
|
|
|
|
struct namecache *ncp;
|
|
|
|
|
|
|
|
ncp = obj;
|
|
|
|
mutex_init(&ncp->nc_lock, MUTEX_DEFAULT, IPL_NONE);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cache_dtor(void *arg, void *obj)
|
|
|
|
{
|
|
|
|
struct namecache *ncp;
|
|
|
|
|
|
|
|
ncp = obj;
|
|
|
|
mutex_destroy(&ncp->nc_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called once for each CPU in the system as attached.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
cache_cpu_init(struct cpu_info *ci)
|
|
|
|
{
|
2008-06-03 19:50:22 +04:00
|
|
|
struct nchcpu *cpup;
|
|
|
|
size_t sz;
|
|
|
|
|
|
|
|
sz = roundup2(sizeof(*cpup), coherency_unit) + coherency_unit;
|
|
|
|
cpup = kmem_zalloc(sz, KM_SLEEP);
|
|
|
|
cpup = (void *)roundup2((uintptr_t)cpup, coherency_unit);
|
|
|
|
mutex_init(&cpup->cpu_lock, MUTEX_DEFAULT, IPL_NONE);
|
|
|
|
ci->ci_data.cpu_nch = cpup;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2001-09-24 10:01:13 +04:00
|
|
|
/*
|
|
|
|
* Name cache reinitialization, for when the maximum number of vnodes increases.
|
|
|
|
*/
|
|
|
|
void
|
2001-12-10 04:49:26 +03:00
|
|
|
nchreinit(void)
|
2001-09-24 10:01:13 +04:00
|
|
|
{
|
|
|
|
struct namecache *ncp;
|
|
|
|
struct nchashhead *oldhash1, *hash1;
|
|
|
|
struct ncvhashhead *oldhash2, *hash2;
|
2002-08-26 05:21:58 +04:00
|
|
|
u_long i, oldmask1, oldmask2, mask1, mask2;
|
2001-09-24 10:01:13 +04:00
|
|
|
|
2008-05-05 21:11:16 +04:00
|
|
|
hash1 = hashinit(desiredvnodes, HASH_LIST, true, &mask1);
|
2001-09-24 10:01:13 +04:00
|
|
|
hash2 =
|
|
|
|
#ifdef NAMECACHE_ENTER_REVERSE
|
2008-05-05 21:11:16 +04:00
|
|
|
hashinit(desiredvnodes, HASH_LIST, true, &mask2);
|
2001-09-24 10:01:13 +04:00
|
|
|
#else
|
2008-05-05 21:11:16 +04:00
|
|
|
hashinit(desiredvnodes/8, HASH_LIST, true, &mask2);
|
2001-09-24 10:01:13 +04:00
|
|
|
#endif
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(namecache_lock);
|
|
|
|
cache_lock_cpus();
|
2001-09-24 10:01:13 +04:00
|
|
|
oldhash1 = nchashtbl;
|
|
|
|
oldmask1 = nchash;
|
|
|
|
nchashtbl = hash1;
|
|
|
|
nchash = mask1;
|
|
|
|
oldhash2 = ncvhashtbl;
|
|
|
|
oldmask2 = ncvhash;
|
|
|
|
ncvhashtbl = hash2;
|
|
|
|
ncvhash = mask2;
|
|
|
|
for (i = 0; i <= oldmask1; i++) {
|
|
|
|
while ((ncp = LIST_FIRST(&oldhash1[i])) != NULL) {
|
|
|
|
LIST_REMOVE(ncp, nc_hash);
|
|
|
|
ncp->nc_hash.le_prev = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; i <= oldmask2; i++) {
|
|
|
|
while ((ncp = LIST_FIRST(&oldhash2[i])) != NULL) {
|
|
|
|
LIST_REMOVE(ncp, nc_vhash);
|
|
|
|
ncp->nc_vhash.le_prev = NULL;
|
|
|
|
}
|
|
|
|
}
|
2008-04-11 19:25:24 +04:00
|
|
|
cache_unlock_cpus();
|
|
|
|
mutex_exit(namecache_lock);
|
2008-05-05 21:11:16 +04:00
|
|
|
hashdone(oldhash1, HASH_LIST, oldmask1);
|
|
|
|
hashdone(oldhash2, HASH_LIST, oldmask2);
|
2001-09-24 10:01:13 +04:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Cache flush, a particular vnode; called when a vnode is renamed to
|
|
|
|
* hide entries that would now be invalid
|
|
|
|
*/
|
1996-02-04 05:17:43 +03:00
|
|
|
void
|
2012-11-05 21:27:37 +04:00
|
|
|
cache_purge1(struct vnode *vp, const char *name, size_t namelen, int flags)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-07-30 16:09:46 +04:00
|
|
|
struct namecache *ncp, *ncnext;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(namecache_lock);
|
2004-04-05 14:20:52 +04:00
|
|
|
if (flags & PURGE_PARENTS) {
|
|
|
|
for (ncp = LIST_FIRST(&vp->v_nclist); ncp != NULL;
|
|
|
|
ncp = ncnext) {
|
|
|
|
ncnext = LIST_NEXT(ncp, nc_vlist);
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(&ncp->nc_lock);
|
|
|
|
cache_invalidate(ncp);
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
cache_disassociate(ncp);
|
2004-04-05 14:20:52 +04:00
|
|
|
}
|
2003-07-30 16:09:46 +04:00
|
|
|
}
|
2004-04-05 14:20:52 +04:00
|
|
|
if (flags & PURGE_CHILDREN) {
|
|
|
|
for (ncp = LIST_FIRST(&vp->v_dnclist); ncp != NULL;
|
|
|
|
ncp = ncnext) {
|
|
|
|
ncnext = LIST_NEXT(ncp, nc_dvlist);
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(&ncp->nc_lock);
|
|
|
|
cache_invalidate(ncp);
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
cache_disassociate(ncp);
|
2004-04-05 14:20:52 +04:00
|
|
|
}
|
|
|
|
}
|
2012-11-05 21:27:37 +04:00
|
|
|
if (name != NULL) {
|
|
|
|
ncp = cache_lookup_entry(vp, name, namelen);
|
2004-04-05 14:20:52 +04:00
|
|
|
if (ncp) {
|
2008-04-11 19:25:24 +04:00
|
|
|
cache_invalidate(ncp);
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
2009-02-18 16:24:18 +03:00
|
|
|
cache_disassociate(ncp);
|
2004-04-05 14:20:52 +04:00
|
|
|
}
|
2003-07-30 16:09:46 +04:00
|
|
|
}
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_exit(namecache_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cache flush, a whole filesystem; called when filesys is umounted to
|
2000-11-24 08:02:23 +03:00
|
|
|
* remove entries that would now be invalid.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1996-02-04 05:17:43 +03:00
|
|
|
void
|
2001-12-10 04:49:26 +03:00
|
|
|
cache_purgevfs(struct mount *mp)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-03-30 13:27:11 +04:00
|
|
|
struct namecache *ncp, *nxtcp;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(namecache_lock);
|
2000-11-24 08:02:23 +03:00
|
|
|
for (ncp = TAILQ_FIRST(&nclruhead); ncp != NULL; ncp = nxtcp) {
|
|
|
|
nxtcp = TAILQ_NEXT(ncp, nc_lru);
|
2008-04-11 19:25:24 +04:00
|
|
|
mutex_enter(&ncp->nc_lock);
|
|
|
|
if (ncp->nc_dvp != NULL && ncp->nc_dvp->v_mount == mp) {
|
|
|
|
/* Free the resources we had. */
|
|
|
|
cache_invalidate(ncp);
|
|
|
|
cache_disassociate(ncp);
|
|
|
|
}
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
}
|
|
|
|
cache_reclaim();
|
|
|
|
mutex_exit(namecache_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan global list invalidating entries until we meet a preset target.
|
|
|
|
* Prefer to invalidate entries that have not scored a hit within
|
|
|
|
* cache_hottime seconds. We sort the LRU list only for this routine's
|
|
|
|
* benefit.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
cache_prune(int incache, int target)
|
|
|
|
{
|
|
|
|
struct namecache *ncp, *nxtcp, *sentinel;
|
|
|
|
int items, recent, tryharder;
|
|
|
|
|
|
|
|
KASSERT(mutex_owned(namecache_lock));
|
|
|
|
|
|
|
|
items = 0;
|
|
|
|
tryharder = 0;
|
|
|
|
recent = hardclock_ticks - hz * cache_hottime;
|
|
|
|
sentinel = NULL;
|
|
|
|
for (ncp = TAILQ_FIRST(&nclruhead); ncp != NULL; ncp = nxtcp) {
|
|
|
|
if (incache <= target)
|
|
|
|
break;
|
|
|
|
items++;
|
|
|
|
nxtcp = TAILQ_NEXT(ncp, nc_lru);
|
|
|
|
if (ncp == sentinel) {
|
|
|
|
/*
|
|
|
|
* If we looped back on ourself, then ignore
|
|
|
|
* recent entries and purge whatever we find.
|
|
|
|
*/
|
|
|
|
tryharder = 1;
|
1994-06-08 15:28:29 +04:00
|
|
|
}
|
2014-01-20 11:47:22 +04:00
|
|
|
if (ncp->nc_dvp == NULL)
|
|
|
|
continue;
|
2009-01-16 09:59:21 +03:00
|
|
|
if (!tryharder && (ncp->nc_hittime - recent) > 0) {
|
2008-04-11 19:25:24 +04:00
|
|
|
if (sentinel == NULL)
|
|
|
|
sentinel = ncp;
|
|
|
|
TAILQ_REMOVE(&nclruhead, ncp, nc_lru);
|
|
|
|
TAILQ_INSERT_TAIL(&nclruhead, ncp, nc_lru);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
mutex_enter(&ncp->nc_lock);
|
|
|
|
if (ncp->nc_dvp != NULL) {
|
|
|
|
cache_invalidate(ncp);
|
|
|
|
cache_disassociate(ncp);
|
|
|
|
incache--;
|
|
|
|
}
|
|
|
|
mutex_exit(&ncp->nc_lock);
|
|
|
|
}
|
|
|
|
cache_ev_scan.ev_count += items;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Collect dead cache entries from all CPUs and garbage collect.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
cache_reclaim(void)
|
|
|
|
{
|
|
|
|
struct namecache *ncp, *next;
|
|
|
|
int items;
|
|
|
|
|
|
|
|
KASSERT(mutex_owned(namecache_lock));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the number of extant entries not awaiting garbage collection
|
|
|
|
* exceeds the high water mark, then reclaim stale entries until we
|
|
|
|
* reach our low water mark.
|
|
|
|
*/
|
|
|
|
items = numcache - cache_gcpend;
|
|
|
|
if (items > (uint64_t)desiredvnodes * cache_hiwat / 100) {
|
|
|
|
cache_prune(items, (int)((uint64_t)desiredvnodes *
|
|
|
|
cache_lowat / 100));
|
|
|
|
cache_ev_over.ev_count++;
|
|
|
|
} else
|
|
|
|
cache_ev_under.ev_count++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stop forward lookup activity on all CPUs and garbage collect dead
|
|
|
|
* entries.
|
|
|
|
*/
|
|
|
|
cache_lock_cpus();
|
|
|
|
ncp = cache_gcqueue;
|
|
|
|
cache_gcqueue = NULL;
|
|
|
|
items = cache_gcpend;
|
|
|
|
cache_gcpend = 0;
|
|
|
|
while (ncp != NULL) {
|
|
|
|
next = ncp->nc_gcqueue;
|
|
|
|
cache_disassociate(ncp);
|
|
|
|
KASSERT(ncp->nc_dvp == NULL);
|
|
|
|
if (ncp->nc_hash.le_prev != NULL) {
|
|
|
|
LIST_REMOVE(ncp, nc_hash);
|
|
|
|
ncp->nc_hash.le_prev = NULL;
|
|
|
|
}
|
|
|
|
pool_cache_put(namecache_cache, ncp);
|
|
|
|
ncp = next;
|
|
|
|
}
|
|
|
|
cache_unlock_cpus();
|
|
|
|
numcache -= items;
|
|
|
|
cache_ev_gc.ev_count += items;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cache maintainence thread, awakening once per second to:
|
|
|
|
*
|
|
|
|
* => keep number of entries below the high water mark
|
|
|
|
* => sort pseudo-LRU list
|
|
|
|
* => garbage collect dead entries
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
cache_thread(void *arg)
|
|
|
|
{
|
|
|
|
|
|
|
|
mutex_enter(namecache_lock);
|
|
|
|
for (;;) {
|
|
|
|
cache_reclaim();
|
|
|
|
kpause("cachegc", false, hz, namecache_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
1999-03-22 20:01:55 +03:00
|
|
|
|
2000-11-24 10:25:50 +03:00
|
|
|
#ifdef DDB
|
|
|
|
void
|
|
|
|
namecache_print(struct vnode *vp, void (*pr)(const char *, ...))
|
|
|
|
{
|
|
|
|
struct vnode *dvp = NULL;
|
|
|
|
struct namecache *ncp;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(ncp, &nclruhead, nc_lru) {
|
2008-04-11 19:25:24 +04:00
|
|
|
if (ncp->nc_vp == vp && ncp->nc_dvp != NULL) {
|
2000-11-24 10:25:50 +03:00
|
|
|
(*pr)("name %.*s\n", ncp->nc_nlen, ncp->nc_name);
|
|
|
|
dvp = ncp->nc_dvp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dvp == NULL) {
|
|
|
|
(*pr)("name not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
vp = dvp;
|
|
|
|
TAILQ_FOREACH(ncp, &nclruhead, nc_lru) {
|
2003-07-30 16:10:57 +04:00
|
|
|
if (ncp->nc_vp == vp) {
|
2000-11-24 10:25:50 +03:00
|
|
|
(*pr)("parent %.*s\n", ncp->nc_nlen, ncp->nc_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-03 23:30:29 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
namecache_count_pass2(void)
|
|
|
|
{
|
|
|
|
struct nchcpu *cpup = curcpu()->ci_data.cpu_nch;
|
|
|
|
|
|
|
|
mutex_enter(&cpup->cpu_lock);
|
|
|
|
COUNT(cpup->cpu_stats, ncs_pass2);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
namecache_count_2passes(void)
|
|
|
|
{
|
|
|
|
struct nchcpu *cpup = curcpu()->ci_data.cpu_nch;
|
|
|
|
|
|
|
|
mutex_enter(&cpup->cpu_lock);
|
|
|
|
COUNT(cpup->cpu_stats, ncs_2passes);
|
|
|
|
mutex_exit(&cpup->cpu_lock);
|
|
|
|
}
|
2014-06-04 01:16:15 +04:00
|
|
|
|
|
|
|
static int
|
|
|
|
cache_stat_sysctl(SYSCTLFN_ARGS)
|
|
|
|
{
|
|
|
|
struct nchstats_sysctl stats;
|
|
|
|
|
|
|
|
if (oldp == NULL) {
|
|
|
|
*oldlenp = sizeof(stats);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*oldlenp < sizeof(stats)) {
|
|
|
|
*oldlenp = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&stats, 0, sizeof(stats));
|
|
|
|
|
|
|
|
sysctl_unlock();
|
|
|
|
cache_lock_cpus();
|
|
|
|
stats.ncs_goodhits = nchstats.ncs_goodhits;
|
|
|
|
stats.ncs_neghits = nchstats.ncs_neghits;
|
|
|
|
stats.ncs_badhits = nchstats.ncs_badhits;
|
|
|
|
stats.ncs_falsehits = nchstats.ncs_falsehits;
|
|
|
|
stats.ncs_miss = nchstats.ncs_miss;
|
|
|
|
stats.ncs_long = nchstats.ncs_long;
|
|
|
|
stats.ncs_pass2 = nchstats.ncs_pass2;
|
|
|
|
stats.ncs_2passes = nchstats.ncs_2passes;
|
|
|
|
stats.ncs_revhits = nchstats.ncs_revhits;
|
|
|
|
stats.ncs_revmiss = nchstats.ncs_revmiss;
|
|
|
|
cache_unlock_cpus();
|
|
|
|
sysctl_relock();
|
|
|
|
|
|
|
|
*oldlenp = sizeof(stats);
|
|
|
|
return sysctl_copyout(l, &stats, oldp, sizeof(stats));
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_SETUP(sysctl_cache_stat_setup, "vfs.namecache_stats subtree setup")
|
|
|
|
{
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_STRUCT, "namecache_stats",
|
|
|
|
SYSCTL_DESCR("namecache statistics"),
|
|
|
|
cache_stat_sysctl, 0, NULL, 0,
|
|
|
|
CTL_VFS, CTL_CREATE, CTL_EOL);
|
|
|
|
}
|