2005-03-14 10:01:29 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2005 Poul-Henning Kamp
|
|
|
|
* 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 AUTHOR 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 AUTHOR 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
2005-03-16 07:35:06 +00:00
|
|
|
#include <sys/mount.h>
|
2005-03-14 10:01:29 +00:00
|
|
|
#include <sys/vnode.h>
|
|
|
|
|
2005-10-31 15:41:29 +00:00
|
|
|
static MALLOC_DEFINE(M_VFS_HASH, "vfs_hash", "VFS hash table");
|
2005-03-14 10:01:29 +00:00
|
|
|
|
2005-03-16 07:35:06 +00:00
|
|
|
static LIST_HEAD(vfs_hash_head, vnode) *vfs_hash_tbl;
|
|
|
|
static LIST_HEAD(,vnode) vfs_hash_side;
|
2005-03-14 10:01:29 +00:00
|
|
|
static u_long vfs_hash_mask;
|
|
|
|
static struct mtx vfs_hash_mtx;
|
|
|
|
|
|
|
|
static void
|
|
|
|
vfs_hashinit(void *dummy __unused)
|
|
|
|
{
|
|
|
|
|
|
|
|
vfs_hash_tbl = hashinit(desiredvnodes, M_VFS_HASH, &vfs_hash_mask);
|
|
|
|
mtx_init(&vfs_hash_mtx, "vfs hash", NULL, MTX_DEF);
|
2005-03-16 07:35:06 +00:00
|
|
|
LIST_INIT(&vfs_hash_side);
|
2005-03-14 10:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be SI_ORDER_SECOND so desiredvnodes is available */
|
|
|
|
SYSINIT(vfs_hash, SI_SUB_VFS, SI_ORDER_SECOND, vfs_hashinit, NULL)
|
|
|
|
|
2005-03-16 07:35:06 +00:00
|
|
|
static struct vfs_hash_head *
|
|
|
|
vfs_hash_index(struct mount *mp, u_int hash)
|
|
|
|
{
|
|
|
|
|
|
|
|
return(&vfs_hash_tbl[(hash + mp->mnt_hashseed) & vfs_hash_mask]);
|
|
|
|
}
|
|
|
|
|
2005-03-14 10:01:29 +00:00
|
|
|
int
|
2005-03-16 11:20:51 +00:00
|
|
|
vfs_hash_get(struct mount *mp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg)
|
2005-03-14 10:01:29 +00:00
|
|
|
{
|
|
|
|
struct vnode *vp;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
mtx_lock(&vfs_hash_mtx);
|
2005-03-16 07:35:06 +00:00
|
|
|
LIST_FOREACH(vp, vfs_hash_index(mp, hash), v_hashlist) {
|
2005-03-14 10:01:29 +00:00
|
|
|
if (vp->v_hash != hash)
|
|
|
|
continue;
|
|
|
|
if (vp->v_mount != mp)
|
|
|
|
continue;
|
2005-03-16 11:20:51 +00:00
|
|
|
if (fn != NULL && fn(vp, arg))
|
|
|
|
continue;
|
2005-03-14 10:01:29 +00:00
|
|
|
VI_LOCK(vp);
|
|
|
|
mtx_unlock(&vfs_hash_mtx);
|
|
|
|
error = vget(vp, flags | LK_INTERLOCK, td);
|
2005-09-12 01:48:57 +00:00
|
|
|
if (error == ENOENT && (flags & LK_NOWAIT) == 0)
|
2005-03-14 10:01:29 +00:00
|
|
|
break;
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
*vpp = vp;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (vp == NULL) {
|
|
|
|
mtx_unlock(&vfs_hash_mtx);
|
|
|
|
*vpp = NULL;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
vfs_hash_remove(struct vnode *vp)
|
|
|
|
{
|
|
|
|
|
|
|
|
mtx_lock(&vfs_hash_mtx);
|
|
|
|
LIST_REMOVE(vp, v_hashlist);
|
|
|
|
mtx_unlock(&vfs_hash_mtx);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-03-16 11:20:51 +00:00
|
|
|
vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg)
|
2005-03-14 10:01:29 +00:00
|
|
|
{
|
|
|
|
struct vnode *vp2;
|
|
|
|
int error;
|
|
|
|
|
2005-03-24 06:16:27 +00:00
|
|
|
lockmgr(vp->v_vnlock, flags & LK_TYPE_MASK, NULL, td);
|
2005-03-15 08:07:07 +00:00
|
|
|
*vpp = NULL;
|
2005-03-14 10:01:29 +00:00
|
|
|
while (1) {
|
|
|
|
mtx_lock(&vfs_hash_mtx);
|
|
|
|
LIST_FOREACH(vp2,
|
2005-03-16 07:35:06 +00:00
|
|
|
vfs_hash_index(vp->v_mount, hash), v_hashlist) {
|
2005-03-14 10:01:29 +00:00
|
|
|
if (vp2->v_hash != hash)
|
|
|
|
continue;
|
|
|
|
if (vp2->v_mount != vp->v_mount)
|
|
|
|
continue;
|
2005-03-18 06:01:21 +00:00
|
|
|
if (fn != NULL && fn(vp2, arg))
|
2005-03-16 11:20:51 +00:00
|
|
|
continue;
|
2005-03-14 10:01:29 +00:00
|
|
|
VI_LOCK(vp2);
|
|
|
|
mtx_unlock(&vfs_hash_mtx);
|
|
|
|
error = vget(vp2, flags | LK_INTERLOCK, td);
|
2005-09-12 01:48:57 +00:00
|
|
|
if (error == ENOENT && (flags & LK_NOWAIT) == 0)
|
2005-03-14 10:01:29 +00:00
|
|
|
break;
|
2005-03-16 07:35:06 +00:00
|
|
|
mtx_lock(&vfs_hash_mtx);
|
|
|
|
LIST_INSERT_HEAD(&vfs_hash_side, vp, v_hashlist);
|
|
|
|
mtx_unlock(&vfs_hash_mtx);
|
2005-03-15 20:00:03 +00:00
|
|
|
vput(vp);
|
|
|
|
if (!error)
|
|
|
|
*vpp = vp2;
|
|
|
|
return (error);
|
2005-03-14 10:01:29 +00:00
|
|
|
}
|
|
|
|
if (vp2 == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
vp->v_hash = hash;
|
2005-03-16 07:35:06 +00:00
|
|
|
LIST_INSERT_HEAD(vfs_hash_index(vp->v_mount, hash), vp, v_hashlist);
|
2005-03-14 10:01:29 +00:00
|
|
|
mtx_unlock(&vfs_hash_mtx);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
vfs_hash_rehash(struct vnode *vp, u_int hash)
|
|
|
|
{
|
|
|
|
|
|
|
|
mtx_lock(&vfs_hash_mtx);
|
|
|
|
LIST_REMOVE(vp, v_hashlist);
|
2005-04-07 07:54:08 +00:00
|
|
|
LIST_INSERT_HEAD(vfs_hash_index(vp->v_mount, hash), vp, v_hashlist);
|
2005-03-14 10:01:29 +00:00
|
|
|
vp->v_hash = hash;
|
|
|
|
mtx_unlock(&vfs_hash_mtx);
|
|
|
|
}
|