summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_cache.c
diff options
context:
space:
mode:
authorPedro Martelletto <pedro@cvs.openbsd.org>2005-05-26 23:28:40 +0000
committerPedro Martelletto <pedro@cvs.openbsd.org>2005-05-26 23:28:40 +0000
commit2a235ce9994ff925bbd39c7df6a77e07ce570337 (patch)
tree433bbcfc5bdf1cac66a2c4c4fdb77f3974adaf42 /sys/kern/vfs_cache.c
parent611344878d53c1ff333fd04e110fbff277563c4c (diff)
styling nits, ok marius@
Diffstat (limited to 'sys/kern/vfs_cache.c')
-rw-r--r--sys/kern/vfs_cache.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c
index 9e232b74240..a0bd900958e 100644
--- a/sys/kern/vfs_cache.c
+++ b/sys/kern/vfs_cache.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_cache.c,v 1.15 2005/05/26 22:40:53 marius Exp $ */
+/* $OpenBSD: vfs_cache.c,v 1.16 2005/05/26 23:28:39 pedro Exp $ */
/* $NetBSD: vfs_cache.c,v 1.13 1996/02/04 02:18:09 christos Exp $ */
/*
@@ -78,7 +78,7 @@ LIST_HEAD(ncvhashhead, namecache) *ncvhashtbl;
u_long ncvhash; /* size of hash table - 1 */
#define NCHASH(dvp, cnp) \
- hash32_buf(&(dvp)->v_id, sizeof((dvp)->v_id), (cnp)->cn_hash) &nchash
+ hash32_buf(&(dvp)->v_id, sizeof((dvp)->v_id), (cnp)->cn_hash) & nchash
#define NCVHASH(vp) (vp)->v_id & ncvhash
@@ -354,9 +354,9 @@ cache_enter(struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
numcache++;
} else if ((ncp = TAILQ_FIRST(&nclruhead)) != NULL) {
TAILQ_REMOVE(&nclruhead, ncp, nc_lru);
- if (ncp->nc_hash.le_prev != 0) {
+ if (ncp->nc_hash.le_prev != NULL) {
LIST_REMOVE(ncp, nc_hash);
- ncp->nc_hash.le_prev = 0;
+ ncp->nc_hash.le_prev = NULL;
}
} else
return;
@@ -385,8 +385,8 @@ cache_enter(struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
* directories.
*/
- ncp->nc_vhash.le_prev = 0;
- ncp->nc_vhash.le_next = 0;
+ ncp->nc_vhash.le_prev = NULL;
+ ncp->nc_vhash.le_next = NULL;
if (vp && vp != dvp && vp->v_type == VDIR &&
(ncp->nc_nlen > 2 ||
@@ -456,13 +456,13 @@ cache_purgevfs(struct mount *mp)
ncp->nc_vp = NULL;
ncp->nc_dvp = NULL;
TAILQ_REMOVE(&nclruhead, ncp, nc_lru);
- if (ncp->nc_hash.le_prev != 0) {
+ if (ncp->nc_hash.le_prev != NULL) {
LIST_REMOVE(ncp, nc_hash);
- ncp->nc_hash.le_prev = 0;
+ ncp->nc_hash.le_prev = NULL;
}
- if (ncp->nc_vhash.le_prev != 0) {
+ if (ncp->nc_vhash.le_prev != NULL) {
LIST_REMOVE(ncp, nc_vhash);
- ncp->nc_vhash.le_prev = 0;
+ ncp->nc_vhash.le_prev = NULL;
}
/* cause rescan of list, it may have altered */
nxtcp = TAILQ_FIRST(&nclruhead);