irix test kernel cleanup
[openafs.git] / src / afs / afs_vcache.c
index efc7503..525bf46 100644 (file)
@@ -19,6 +19,7 @@
  * afs_FlushActiveVcaches
  * afs_VerifyVCache2
  * afs_WriteVCache
+ * afs_WriteVCacheDiscon
  * afs_SimpleVStat
  * afs_ProcessFS
  * TellALittleWhiteLie
@@ -26,6 +27,7 @@
  * afs_GetVCache
  * afs_LookupVCache
  * afs_GetRootVCache
+ * afs_UpdateStatus
  * afs_FetchStatus
  * afs_StuffVcache
  * afs_PutVCache
@@ -38,8 +40,6 @@
 #include <afsconfig.h>
 #include "afs/param.h"
 
-RCSID
-    ("$Header$");
 
 #include "afs/sysincludes.h"   /*Standard vendor system headers */
 #include "afsincludes.h"       /*AFS-based standard headers */
@@ -47,10 +47,8 @@ RCSID
 #include "afs/afs_cbqueue.h"
 #include "afs/afs_osidnlc.h"
 
-#ifdef AFS_OSF_ENV
 afs_int32 afs_maxvcount = 0;   /* max number of vcache entries */
 afs_int32 afs_vcount = 0;      /* number of vcache in use now */
-#endif /* AFS_OSF_ENV */
 
 #ifdef AFS_SGI_ENV
 int afsvnumbers = 0;
@@ -61,25 +59,41 @@ char *makesname();
 #endif /* AFS_SGI64_ENV */
 
 /* Exported variables */
+#ifdef AFS_DISCON_ENV
+afs_rwlock_t afs_xvcdirty;     /*Lock: discon vcache dirty list mgmt */
+#endif
 afs_rwlock_t afs_xvcache;      /*Lock: alloc new stat cache entries */
+afs_rwlock_t afs_xvreclaim;    /*Lock: entries reclaimed, not on free list */
 afs_lock_t afs_xvcb;           /*Lock: fids on which there are callbacks */
-struct vcache *freeVCList;     /*Free list for stat cache entries */
-struct vcache *Initial_freeVCList;     /*Initial list for above */
+#if !defined(AFS_LINUX22_ENV)
+static struct vcache *freeVCList;      /*Free list for stat cache entries */
+struct vcache *ReclaimedVCList;        /*Reclaimed list for stat entries */
+static struct vcache *Initial_freeVCList;      /*Initial list for above */
+#endif
 struct afs_q VLRU;             /*vcache LRU */
 afs_int32 vcachegen = 0;
 unsigned int afs_paniconwarn = 0;
 struct vcache *afs_vhashT[VCSIZE];
+struct afs_q afs_vhashTV[VCSIZE];
 static struct afs_cbr *afs_cbrHashT[CBRSIZE];
 afs_int32 afs_bulkStatsLost;
 int afs_norefpanic = 0;
 
+
+/* Disk backed vcache definitions 
+ * Both protected by xvcache */
+#ifdef AFS_DISCON_ENV
+static int afs_nextVcacheSlot = 0;
+static struct afs_slotlist *afs_freeSlotList = NULL;
+#endif
+
 /* Forward declarations */
 static afs_int32 afs_QueueVCB(struct vcache *avc);
 
-/*
- * afs_HashCBRFid
- *
+/*!
  * Generate an index into the hash table for a given Fid.
+ * \param fid 
+ * \return The hash value.
  */
 static int
 afs_HashCBRFid(struct AFSFid *fid)
@@ -87,11 +101,11 @@ afs_HashCBRFid(struct AFSFid *fid)
     return (fid->Volume + fid->Vnode + fid->Unique) % CBRSIZE;
 }
 
-/*
- * afs_InsertHashCBR
- *
+/*!
  * Insert a CBR entry into the hash table.
  * Must be called with afs_xvcb held.
+ * \param cbr
+ * \return
  */
 static void
 afs_InsertHashCBR(struct afs_cbr *cbr)
@@ -106,15 +120,9 @@ afs_InsertHashCBR(struct afs_cbr *cbr)
     afs_cbrHashT[slot] = cbr;
 }
 
-/*
- * afs_FlushVCache
- *
- * Description:
- *     Flush the given vcache entry.
+/*!
  *
- * Parameters:
- *     avc : Pointer to vcache entry to flush.
- *     slept : Pointer to int to set 1 if we sleep/drop locks, 0 if we don't.
+ * Flush the given vcache entry.
  *
  * Environment:
  *     afs_xvcache lock must be held for writing upon entry to
@@ -123,49 +131,48 @@ afs_InsertHashCBR(struct afs_cbr *cbr)
  * LOCK: afs_FlushVCache afs_xvcache W
  * REFCNT: vcache ref count must be zero on entry except for osf1
  * RACE: lock is dropped and reobtained, permitting race in caller
+ *
+ * \param avc Pointer to vcache entry to flush.
+ * \param slept Pointer to int to set 1 if we sleep/drop locks, 0 if we don't.
+ *
  */
-
 int
 afs_FlushVCache(struct vcache *avc, int *slept)
 {                              /*afs_FlushVCache */
 
-    register afs_int32 i, code;
-    register struct vcache **uvc, *wvc;
+    afs_int32 i, code;
+    struct vcache **uvc, *wvc;
 
     *slept = 0;
     AFS_STATCNT(afs_FlushVCache);
     afs_Trace2(afs_iclSetp, CM_TRACE_FLUSHV, ICL_TYPE_POINTER, avc,
-              ICL_TYPE_INT32, avc->states);
-#ifdef  AFS_OSF_ENV
-    AFS_GUNLOCK();
-    VN_LOCK(AFSTOV(avc));
-    AFS_GLOCK();
-#endif
+              ICL_TYPE_INT32, avc->f.states);
 
     code = osi_VM_FlushVCache(avc, slept);
     if (code)
        goto bad;
 
-    if (avc->states & CVFlushed) {
+    if (avc->f.states & CVFlushed) {
        code = EBUSY;
        goto bad;
     }
+#if !defined(AFS_LINUX22_ENV)
     if (avc->nextfree || !avc->vlruq.prev || !avc->vlruq.next) {       /* qv afs.h */
        refpanic("LRU vs. Free inconsistency");
     }
-    avc->states |= CVFlushed;
+#endif
+    avc->f.states |= CVFlushed;
     /* pull the entry out of the lruq and put it on the free list */
     QRemove(&avc->vlruq);
-    avc->vlruq.prev = avc->vlruq.next = (struct afs_q *)0;
 
     /* keep track of # of files that we bulk stat'd, but never used
      * before they got recycled.
      */
-    if (avc->states & CBulkStat)
+    if (avc->f.states & CBulkStat)
        afs_bulkStatsLost++;
     vcachegen++;
     /* remove entry from the hash chain */
-    i = VCHash(&avc->fid);
+    i = VCHash(&avc->f.fid);
     uvc = &afs_vhashT[i];
     for (wvc = *uvc; wvc; uvc = &wvc->hnext, wvc = *uvc) {
        if (avc == wvc) {
@@ -174,8 +181,10 @@ afs_FlushVCache(struct vcache *avc, int *slept)
            break;
        }
     }
-    if (!wvc)
-       osi_Panic("flushvcache");       /* not in correct hash bucket */
+
+    /* remove entry from the volume hash table */
+    QRemove(&avc->vhashq);
+
     if (avc->mvid)
        osi_FreeSmallSpace(avc->mvid);
     avc->mvid = (struct VenusFid *)0;
@@ -183,29 +192,30 @@ afs_FlushVCache(struct vcache *avc, int *slept)
        afs_osi_Free(avc->linkData, strlen(avc->linkData) + 1);
        avc->linkData = NULL;
     }
-#if defined(AFS_XBSD_ENV)
+#if defined(AFS_XBSD_ENV) || defined(AFS_DARWIN_ENV)
     /* OK, there are no internal vrefCounts, so there shouldn't
      * be any more refs here. */
     if (avc->v) {
+#ifdef AFS_DARWIN80_ENV
+       vnode_clearfsnode(AFSTOV(avc));
+        vnode_removefsref(AFSTOV(avc));
+#else
        avc->v->v_data = NULL;  /* remove from vnode */
-       avc->v = NULL;          /* also drop the ptr to vnode */
+#endif
+       AFSTOV(avc) = NULL;             /* also drop the ptr to vnode */
     }
 #endif
+#ifdef AFS_SUN510_ENV
+    /* As we use private vnodes, cleanup is up to us */
+    vn_reinit(AFSTOV(avc));
+#endif
     afs_FreeAllAxs(&(avc->Access));
-
-    /* we can't really give back callbacks on RO files, since the
-     * server only tracks them on a per-volume basis, and we don't
-     * know whether we still have some other files from the same
-     * volume. */
-    if ((avc->states & CRO) == 0 && avc->callback) {
-       afs_QueueVCB(avc);
-    }
+    afs_QueueVCB(avc);
     ObtainWriteLock(&afs_xcbhash, 460);
     afs_DequeueCallback(avc);  /* remove it from queued callbacks list */
-    avc->states &= ~(CStatd | CUnique);
+    avc->f.states &= ~(CStatd | CUnique);
     ReleaseWriteLock(&afs_xcbhash);
-    afs_symhint_inval(avc);
-    if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
+    if ((avc->f.states & CForeign) || (avc->f.fid.Fid.Vnode & 1))
        osi_dnlc_purgedp(avc);  /* if it (could be) a directory */
     else
        osi_dnlc_purgevp(avc);
@@ -215,66 +225,60 @@ afs_FlushVCache(struct vcache *avc, int *slept)
      * optimistic synchronization algorithm
      */
     afs_allZaps++;
-    if (avc->fid.Fid.Vnode & 1)
+    if (avc->f.fid.Fid.Vnode & 1)
        afs_oddZaps++;
     else
        afs_evenZaps++;
 
-#if    !defined(AFS_OSF_ENV)
+#if !defined(AFS_LINUX22_ENV)
     /* put the entry in the free list */
     avc->nextfree = freeVCList;
     freeVCList = avc;
     if (avc->vlruq.prev || avc->vlruq.next) {
        refpanic("LRU vs. Free inconsistency");
     }
+    avc->f.states |= CVFlushed;
 #else
     /* This should put it back on the vnode free list since usecount is 1 */
     afs_vcount--;
     vSetType(avc, VREG);
-    if (VREFCOUNT(avc) > 0) {
-       VN_UNLOCK(AFSTOV(avc));
+    if (VREFCOUNT_GT(avc,0)) {
        AFS_RELE(AFSTOV(avc));
+       afs_stats_cmperf.vcacheXAllocs--;
     } else {
        if (afs_norefpanic) {
            printf("flush vc refcnt < 1");
            afs_norefpanic++;
-           (void)vgone(avc, VX_NOSLEEP, NULL);
-           AFS_GLOCK();
-           VN_UNLOCK(AFSTOV(avc));
        } else
            osi_Panic("flush vc refcnt < 1");
     }
-#endif /* AFS_OSF_ENV */
-    avc->states |= CVFlushed;
+#endif /* AFS_LINUX22_ENV */
     return 0;
 
   bad:
-#ifdef AFS_OSF_ENV
-    VN_UNLOCK(AFSTOV(avc));
-#endif
     return code;
-
 }                              /*afs_FlushVCache */
 
 #ifndef AFS_SGI_ENV
-/*
- * afs_InactiveVCache
+/*!
+ *  The core of the inactive vnode op for all but IRIX.
  *
- * The core of the inactive vnode op for all but IRIX.
+ * \param avc 
+ * \param acred
  */
 void
-afs_InactiveVCache(struct vcache *avc, struct AFS_UCRED *acred)
+afs_InactiveVCache(struct vcache *avc, afs_ucred_t *acred)
 {
     AFS_STATCNT(afs_inactive);
-    if (avc->states & CDirty) {
+    if (avc->f.states & CDirty) {
        /* we can't keep trying to push back dirty data forever.  Give up. */
        afs_InvalidateAllSegments(avc); /* turns off dirty bit */
     }
-    avc->states &= ~CMAPPED;   /* mainly used by SunOS 4.0.x */
-    avc->states &= ~CDirty;    /* Turn it off */
-    if (avc->states & CUnlinked) {
+    avc->f.states &= ~CMAPPED; /* mainly used by SunOS 4.0.x */
+    avc->f.states &= ~CDirty;  /* Turn it off */
+    if (avc->f.states & CUnlinked) {
        if (CheckLock(&afs_xvcache) || CheckLock(&afs_xdcache)) {
-           avc->states |= CUnlinkedDel;
+           avc->f.states |= CUnlinkedDel;
            return;
        }
        afs_remunlink(avc, 1);  /* ignore any return code */
@@ -283,16 +287,18 @@ afs_InactiveVCache(struct vcache *avc, struct AFS_UCRED *acred)
 }
 #endif
 
-/*
- * afs_AllocCBR
- *
- * Description: allocate a callback return structure from the
+/*!
+ *   Allocate a callback return structure from the
  * free list and return it.
  *
- * Env: The alloc and free routines are both called with the afs_xvcb lock
+ * Environment: The alloc and free routines are both called with the afs_xvcb lock
  * held, so we don't have to worry about blocking in osi_Alloc.
+ *
+ * \return The allocated afs_cbr.
  */
 static struct afs_cbr *afs_cbrSpace = 0;
+/* if alloc limit below changes, fix me! */
+static struct afs_cbr *afs_cbrHeads[2];
 struct afs_cbr *
 afs_AllocCBR(void)
 {
@@ -314,6 +320,7 @@ afs_AllocCBR(void)
            }
            tsp[AFS_NCBRS - 1].next = 0;
            afs_cbrSpace = tsp;
+           afs_cbrHeads[afs_stats_cmperf.CallBackAlloced] = tsp;
            afs_stats_cmperf.CallBackAlloced++;
        }
     }
@@ -322,15 +329,14 @@ afs_AllocCBR(void)
     return tsp;
 }
 
-/*
- * afs_FreeCBR
+/*!
+ * Free a callback return structure, removing it from all lists.
  *
- * Description: free a callback return structure, removing it from all lists.
+ * Environment: the xvcb lock is held over these calls.
  *
- * Parameters:
- *     asp -- the address of the structure to free.
+ * \param asp The address of the structure to free.
  *
- * Environment: the xvcb lock is held over these calls.
+ * \rerurn 0
  */
 int
 afs_FreeCBR(register struct afs_cbr *asp)
@@ -348,15 +354,13 @@ afs_FreeCBR(register struct afs_cbr *asp)
     return 0;
 }
 
-/*
- * afs_FlushVCBs
- *
- * Description: flush all queued callbacks to all servers.
- *
- * Parameters: none.
+/*!
+ *   Flush all queued callbacks to all servers.
  *
  * Environment: holds xvcb lock over RPC to guard against race conditions
  *     when a new callback is granted for the same file later on.
+ *
+ * \return 0 for success.
  */
 afs_int32
 afs_FlushVCBs(afs_int32 lockit)
@@ -371,7 +375,7 @@ afs_FlushVCBs(afs_int32 lockit)
     struct server *tsp;
     int i;
     struct vrequest treq;
-    struct conn *tc;
+    struct afs_conn *tc;
     int safety1, safety2, safety3;
     XSTATS_DECLS;
     if ((code = afs_InitReq(&treq, afs_osi_credp)))
@@ -380,7 +384,7 @@ afs_FlushVCBs(afs_int32 lockit)
     tfids = afs_osi_Alloc(sizeof(struct AFSFid) * AFS_MAXCBRSCALL);
 
     if (lockit)
-       MObtainWriteLock(&afs_xvcb, 273);
+       ObtainWriteLock(&afs_xvcb, 273);
     ObtainReadLock(&afs_xserver);
     for (i = 0; i < NSERVERS; i++) {
        for (safety1 = 0, tsp = afs_servers[i];
@@ -406,7 +410,7 @@ afs_FlushVCBs(afs_int32 lockit)
                    cbArray.AFSCBs_val = callBacks;
                    memset(&callBacks[0], 0, sizeof(callBacks[0]));
                    callBacks[0].CallBackType = CB_EXCLUSIVE;
-                   for (safety3 = 0; safety3 < MAXHOSTS * 2; safety3++) {
+                   for (safety3 = 0; safety3 < AFS_MAXHOSTS * 2; safety3++) {
                        tc = afs_ConnByHost(tsp, tsp->cell->fsport,
                                            tsp->cell->cellNum, &treq, 0,
                                            SHARED_LOCK);
@@ -465,41 +469,49 @@ afs_FlushVCBs(afs_int32 lockit)
 
     ReleaseReadLock(&afs_xserver);
     if (lockit)
-       MReleaseWriteLock(&afs_xvcb);
+       ReleaseWriteLock(&afs_xvcb);
     afs_osi_Free(tfids, sizeof(struct AFSFid) * AFS_MAXCBRSCALL);
     return 0;
 }
 
-/*
- * afs_QueueVCB
- *
- * Description:
- *     Queue a callback on the given fid.
- *
- * Parameters:
- *     avc: vcache entry
+/*!
+ *  Queue a callback on the given fid.
  *
  * Environment:
  *     Locks the xvcb lock.
  *     Called when the xvcache lock is already held.
+ *
+ * \param avc vcache entry
+ * \return 1 if queued, 0 otherwise
  */
 
 static afs_int32
 afs_QueueVCB(struct vcache *avc)
 {
+    int queued = 0;
     struct server *tsp;
     struct afs_cbr *tcbp;
 
     AFS_STATCNT(afs_QueueVCB);
+
+    ObtainWriteLock(&afs_xvcb, 274);
+
+    /* we can't really give back callbacks on RO files, since the
+     * server only tracks them on a per-volume basis, and we don't
+     * know whether we still have some other files from the same
+     * volume. */
+    if (!((avc->f.states & CRO) == 0 && avc->callback)) {
+        goto done;
+    }
+
     /* The callback is really just a struct server ptr. */
     tsp = (struct server *)(avc->callback);
 
     /* we now have a pointer to the server, so we just allocate
      * a queue entry and queue it.
      */
-    MObtainWriteLock(&afs_xvcb, 274);
     tcbp = afs_AllocCBR();
-    tcbp->fid = avc->fid.Fid;
+    tcbp->fid = avc->f.fid.Fid;
 
     tcbp->next = tsp->cbrs;
     if (tsp->cbrs)
@@ -509,26 +521,25 @@ afs_QueueVCB(struct vcache *avc)
     tcbp->pprev = &tsp->cbrs;
 
     afs_InsertHashCBR(tcbp);
+    queued = 1;
 
+ done:
     /* now release locks and return */
-    MReleaseWriteLock(&afs_xvcb);
-    return 0;
+    ReleaseWriteLock(&afs_xvcb);
+    return queued;
 }
 
 
-/*
- * afs_RemoveVCB
- *
- * Description:
- *     Remove a queued callback for a given Fid.
- *
- * Parameters:
- *     afid: The fid we want cleansed of queued callbacks.
+/*!
+ *   Remove a queued callback for a given Fid.
  *
  * Environment:
  *     Locks xvcb and xserver locks.
  *     Typically called with xdcache, xvcache and/or individual vcache
  *     entries locked.
+ *
+ * \param afid The fid we want cleansed of queued callbacks.
+ *
  */
 
 void
@@ -538,7 +549,7 @@ afs_RemoveVCB(struct VenusFid *afid)
     struct afs_cbr *cbr, *ncbr;
 
     AFS_STATCNT(afs_RemoveVCB);
-    MObtainWriteLock(&afs_xvcb, 275);
+    ObtainWriteLock(&afs_xvcb, 275);
 
     slot = afs_HashCBRFid(&afid->Fid);
     ncbr = afs_cbrHashT[slot];
@@ -554,153 +565,89 @@ afs_RemoveVCB(struct VenusFid *afid)
        }
     }
 
-    MReleaseWriteLock(&afs_xvcb);
+    ReleaseWriteLock(&afs_xvcb);
 }
 
-/*
- * afs_NewVCache
- *
- * Description:
- *     This routine is responsible for allocating a new cache entry
- *     from the free list.  It formats the cache entry and inserts it
- *     into the appropriate hash tables.  It must be called with
- *     afs_xvcache write-locked so as to prevent several processes from
- *     trying to create a new cache entry simultaneously.
- *
- * Parameters:
- *     afid  : The file id of the file whose cache entry is being
- *             created.
- */
-/* LOCK: afs_NewVCache  afs_xvcache W */
-struct vcache *
-afs_NewVCache(struct VenusFid *afid, struct server *serverp)
+void 
+afs_FlushReclaimedVcaches(void)
 {
+#if !defined(AFS_LINUX22_ENV)
     struct vcache *tvc;
-    afs_int32 i;
-    afs_int32 anumber = VCACHE_FREE;
-#ifdef AFS_AIX_ENV
-    struct gnode *gnodepnt;
-#endif
-#ifdef AFS_MACH_ENV
-    struct vm_info *vm_info_ptr;
-#endif /* AFS_MACH_ENV */
-#ifdef AFS_OSF_ENV
-    struct vcache *nvc;
-#endif /* AFS_OSF_ENV */
-    struct afs_q *tq, *uq;
     int code, fv_slept;
+    struct vcache *tmpReclaimedVCList = NULL;  
 
-    AFS_STATCNT(afs_NewVCache);
-#ifdef AFS_OSF_ENV
-#ifdef AFS_OSF30_ENV
-    if (afs_vcount >= afs_maxvcount) {
-#else
-    /*
-     * If we are using > 33 % of the total system vnodes for AFS vcache
-     * entries or we are using the maximum number of vcache entries,
-     * then free some.  (if our usage is > 33% we should free some, if
-     * our usage is > afs_maxvcount, set elsewhere to 0.5*nvnode,
-     * we _must_ free some -- no choice).
-     */
-    if (((3 * afs_vcount) > nvnode) || (afs_vcount >= afs_maxvcount)) {
-#endif
-       struct afs_q *tq, *uq;
-       int i;
-       char *panicstr;
-
-       i = 0;
-       for (tq = VLRU.prev; tq != &VLRU && anumber > 0; tq = uq) {
-           tvc = QTOV(tq);
-           uq = QPrev(tq);
-           if (tvc->states & CVFlushed)
-               refpanic("CVFlushed on VLRU");
-           else if (i++ > afs_maxvcount)
-               refpanic("Exceeded pool of AFS vnodes(VLRU cycle?)");
-           else if (QNext(uq) != tq)
-               refpanic("VLRU inconsistent");
-           else if (VREFCOUNT(tvc) < 1)
-               refpanic("refcnt 0 on VLRU");
-
-           if (VREFCOUNT(tvc) == 1 && tvc->opens == 0
-               && (tvc->states & CUnlinkedDel) == 0) {
-               code = afs_FlushVCache(tvc, &fv_slept);
-               if (code == 0) {
-                   anumber--;
-               }
-               if (fv_slept) {
-                   uq = VLRU.prev;
-                   i = 0;
-                   continue;   /* start over - may have raced. */
-               }
-           }
-           if (tq == uq)
-               break;
+    ObtainWriteLock(&afs_xvreclaim, 76);
+    while (ReclaimedVCList) {
+       tvc = ReclaimedVCList;  /* take from free list */
+       ReclaimedVCList = tvc->nextfree;
+       tvc->nextfree = NULL;
+       code = afs_FlushVCache(tvc, &fv_slept);
+       if (code) {
+           /* Ok, so, if we got code != 0, uh, wtf do we do? */
+           /* Probably, build a temporary list and then put all back when we
+              get to the end of the list */
+           /* This is actually really crappy, but we need to not leak these.
+              We probably need a way to be smarter about this. */
+           tvc->nextfree = tmpReclaimedVCList;
+           tmpReclaimedVCList = tvc;
+           printf("Reclaim list flush %lx failed: %d\n", (unsigned long) tvc, code);
        }
-       if (anumber == VCACHE_FREE) {
-           printf("NewVCache: warning none freed, using %d of %d\n",
-                  afs_vcount, afs_maxvcount);
-           if (afs_vcount >= afs_maxvcount) {
-               osi_Panic("NewVCache - none freed");
-               /* XXX instead of panicing, should do afs_maxvcount++
-                * and magic up another one */
-           }
+        if (tvc->f.states & (CVInit
+#ifdef AFS_DARWIN80_ENV
+                         | CDeadVnode
+#endif
+           )) {
+          tvc->f.states &= ~(CVInit
+#ifdef AFS_DARWIN80_ENV
+                           | CDeadVnode
+#endif
+          );
+          afs_osi_Wakeup(&tvc->f.states);
        }
     }
+    if (tmpReclaimedVCList) 
+       ReclaimedVCList = tmpReclaimedVCList;
 
-    AFS_GUNLOCK();
-    if (getnewvnode(MOUNT_AFS, &Afs_vnodeops, &nvc)) {
-       /* What should we do ???? */
-       osi_Panic("afs_NewVCache: no more vnodes");
-    }
-    AFS_GLOCK();
+    ReleaseWriteLock(&afs_xvreclaim);
+#endif
+}
 
-    tvc = nvc;
-    tvc->nextfree = NULL;
-    afs_vcount++;
-#else /* AFS_OSF_ENV */
-    /* pull out a free cache entry */
-    if (!freeVCList) {
+int
+afs_ShakeLooseVCaches(afs_int32 anumber)
+{
+#if defined(AFS_LINUX22_ENV)
+    afs_int32 i;
+    struct vcache *tvc;
+    struct afs_q *tq, *uq;
+    int code, fv_slept;
+    afs_int32 target = anumber;
+
+    if (afsd_dynamic_vcaches || afs_vcount >= afs_maxvcount) {
        i = 0;
-       for (tq = VLRU.prev; (anumber > 0) && (tq != &VLRU); tq = uq) {
+       for (tq = VLRU.prev; tq != &VLRU && anumber > 0; tq = uq) {
            tvc = QTOV(tq);
            uq = QPrev(tq);
-
-           if (tvc->states & CVFlushed) {
+           if (tvc->f.states & CVFlushed) {
                refpanic("CVFlushed on VLRU");
-           } else if (i++ > 2 * afs_cacheStats) {      /* even allowing for a few xallocs... */
-               refpanic("Increase -stat parameter of afsd(VLRU cycle?)");
+           } else if (!afsd_dynamic_vcaches && i++ > afs_maxvcount) {
+               refpanic("Exceeded pool of AFS vnodes(VLRU cycle?)");
            } else if (QNext(uq) != tq) {
                refpanic("VLRU inconsistent");
+           } else if (!VREFCOUNT_GT(tvc,0)) {
+               refpanic("refcnt 0 on VLRU");
            }
-#ifdef AFS_DARWIN_ENV
-           if ((VREFCOUNT(tvc) < DARWIN_REFBASE) ||
-               (VREFCOUNT(tvc) < 1 + DARWIN_REFBASE &&
-                UBCINFOEXISTS(&tvc->v))) {
-               VREFCOUNT_SET(tvc,
-                             DARWIN_REFBASE +
-                             (UBCINFOEXISTS(&tvc->v) ? 1 : 0));
-           }
-           if (tvc->opens == 0 && ((tvc->states & CUnlinkedDel) == 0)
-               && VREFCOUNT(tvc) == DARWIN_REFBASE + 1
-               && UBCINFOEXISTS(&tvc->v)) {
-               osi_VM_TryReclaim(tvc, &fv_slept);
-               if (fv_slept) {
-                   uq = VLRU.prev;
-                   i = 0;
-                   continue;   /* start over - may have raced. */
-               }
-           }
-#elif defined(AFS_LINUX22_ENV)
-           if (tvc != afs_globalVp && VREFCOUNT(tvc) && tvc->opens == 0) {
+
+#if defined(AFS_LINUX22_ENV)
+           if (tvc != afs_globalVp && VREFCOUNT(tvc) > 1 && tvc->opens == 0) {
                 struct dentry *dentry;
-                struct list_head *cur, *head = &(AFSTOI(tvc))->i_dentry;
-                AFS_FAST_HOLD(tvc);
+                struct list_head *cur, *head;
                 AFS_GUNLOCK();
-
-restart:
 #if defined(AFS_LINUX24_ENV)
                 spin_lock(&dcache_lock);
-#endif
+#endif /* AFS_LINUX24_ENV */
+               head = &(AFSTOV(tvc))->i_dentry;
+
+restart:
                 cur = head;
                 while ((cur = cur->next) != head) {
                     dentry = list_entry(cur, struct dentry, d_alias);
@@ -712,44 +659,30 @@ restart:
 
 #if defined(AFS_LINUX24_ENV)
                    spin_unlock(&dcache_lock);
-#endif
+#endif /* AFS_LINUX24_ENV */
                    if (d_invalidate(dentry) == -EBUSY) {
                        dput(dentry);
                        /* perhaps lock and try to continue? (use cur as head?) */
                        goto inuse;
                    }
                    dput(dentry);
+#if defined(AFS_LINUX24_ENV)
+                   spin_lock(&dcache_lock);
+#endif /* AFS_LINUX24_ENV */
                    goto restart;
                }                   
 #if defined(AFS_LINUX24_ENV)
                spin_unlock(&dcache_lock);
-#endif
+#endif /* AFS_LINUX24_ENV */
            inuse:
                AFS_GLOCK();
-               AFS_FAST_RELE(tvc);
            }
-#endif
+#endif /* AFS_LINUX22_ENV */
 
-           if (VREFCOUNT(tvc) ==
-#ifdef AFS_DARWIN_ENV
-               DARWIN_REFBASE
-#else
-               0
-#endif
-               && tvc->opens == 0 && (tvc->states & CUnlinkedDel) == 0) {
-#if defined(AFS_XBSD_ENV)
-               /*
-                * vgone() reclaims the vnode, which calls afs_FlushVCache(),
-                * then it puts the vnode on the free list.
-                * If we don't do this we end up with a cleaned vnode that's
-                * not on the free list.
-                * XXX assume FreeBSD is the same for now.
-                */
-               vgone(AFSTOV(tvc));
-               code = fv_slept = 0;
-#else
+           if (VREFCOUNT_GT(tvc,0) && !VREFCOUNT_GT(tvc,1) &&
+               tvc->opens == 0
+               && (tvc->f.states & CUnlinkedDel) == 0) {
                code = afs_FlushVCache(tvc, &fv_slept);
-#endif
                if (code == 0) {
                    anumber--;
                }
@@ -762,89 +695,369 @@ restart:
            if (tq == uq)
                break;
        }
+       if (!afsd_dynamic_vcaches && anumber == target) {
+           printf("afs_ShakeLooseVCaches: warning none freed, using %d of %d\n",
+                  afs_vcount, afs_maxvcount);
+       }
+    } /* finished freeing up space */
+/*
+    printf("recycled %d entries\n", target-anumber);
+*/
+#endif
+    return 0;
+}
+
+/* Alloc new vnode. */
+
+static struct vcache *
+afs_AllocVCache(void) 
+{
+    struct vcache *tvc;
+#if defined(AFS_LINUX22_ENV)
+    struct inode *ip;
+
+    AFS_GUNLOCK();
+    ip = new_inode(afs_globalVFS);
+    if (!ip)
+       osi_Panic("afs_AllocVCache: no more inodes");
+    AFS_GLOCK();
+#if defined(STRUCT_SUPER_HAS_ALLOC_INODE)
+    tvc = VTOAFS(ip);
+#else
+    tvc = afs_osi_Alloc(sizeof(struct vcache));
+    ip->u.generic_ip = tvc;
+    tvc->v = ip;
+#endif
+
+    afs_vcount++;
+
+    /* track the peak */
+    if (afsd_dynamic_vcaches && afs_maxvcount < afs_vcount) {
+       afs_maxvcount = afs_vcount;
+       /*printf("peak vnodes: %d\n", afs_maxvcount);*/
     }
-    if (!freeVCList) {
-       /* none free, making one is better than a panic */
-       afs_stats_cmperf.vcacheXAllocs++;       /* count in case we have a leak */
-       tvc = (struct vcache *)afs_osi_Alloc(sizeof(struct vcache));
+
+    afs_stats_cmperf.vcacheXAllocs++;  /* count in case we have a leak */
+#else
+    /* none free, making one is better than a panic */
+    afs_stats_cmperf.vcacheXAllocs++;  /* count in case we have a leak */
+    tvc = (struct vcache *)afs_osi_Alloc(sizeof(struct vcache));
+#if (defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)) && !defined(UKERNEL)
+    tvc->v = NULL; /* important to clean this, or use memset 0 */
+#endif /* DARWIN || XBSD && !UKERNEL */
 #ifdef KERNEL_HAVE_PIN
-       pin((char *)tvc, sizeof(struct vcache));        /* XXX */
-#endif
-#ifdef AFS_MACH_ENV
-       /* In case it still comes here we need to fill this */
-       tvc->v.v_vm_info = VM_INFO_NULL;
-       vm_info_init(tvc->v.v_vm_info);
-       /* perhaps we should also do close_flush on non-NeXT mach systems;
-        * who knows; we don't currently have the sources.
-        */
-#endif /* AFS_MACH_ENV */
+    pin((char *)tvc, sizeof(struct vcache));   /* XXX */
+#endif
 #if defined(AFS_SGI_ENV)
-       {
-           char name[METER_NAMSZ];
-           memset(tvc, 0, sizeof(struct vcache));
-           tvc->v.v_number = ++afsvnumbers;
-           tvc->vc_rwlockid = OSI_NO_LOCKID;
-           initnsema(&tvc->vc_rwlock, 1,
-                     makesname(name, "vrw", tvc->v.v_number));
+    {
+       char name[METER_NAMSZ];
+       memset(tvc, 0, sizeof(struct vcache));
+       tvc->v.v_number = ++afsvnumbers;
+       tvc->vc_rwlockid = OSI_NO_LOCKID;
+       initnsema(&tvc->vc_rwlock, 1,
+                 makesname(name, "vrw", tvc->v.v_number));
 #ifndef        AFS_SGI53_ENV
-           initnsema(&tvc->v.v_sync, 0,
-                     makesname(name, "vsy", tvc->v.v_number));
+       initnsema(&tvc->v.v_sync, 0,
+                 makesname(name, "vsy", tvc->v.v_number));
 #endif
 #ifndef AFS_SGI62_ENV
-           initnlock(&tvc->v.v_lock,
-                     makesname(name, "vlk", tvc->v.v_number));
+       initnlock(&tvc->v.v_lock,
+                 makesname(name, "vlk", tvc->v.v_number));
 #endif
-       }
+    }
 #endif /* AFS_SGI_ENV */
+#endif
+#ifdef AFS_DISCON_ENV
+    /* If we create a new inode, we either give it a new slot number,
+     * or if one's available, use a slot number from the slot free list
+     */
+    if (afs_freeSlotList != NULL) {
+       struct afs_slotlist *tmp;
+   
+       tvc->diskSlot = afs_freeSlotList->slot;
+       tmp = afs_freeSlotList;
+       afs_freeSlotList = tmp->next;
+       afs_osi_Free(tmp, sizeof(struct afs_slotlist));
+    }  else {
+       tvc->diskSlot = afs_nextVcacheSlot++;
+    }
+#endif
+
+    return tvc;
+}
+
+/*!
+ *   This routine is responsible for allocating a new cache entry
+ * from the free list.  It formats the cache entry and inserts it
+ * into the appropriate hash tables.  It must be called with
+ * afs_xvcache write-locked so as to prevent several processes from
+ * trying to create a new cache entry simultaneously.
+ *
+ * LOCK: afs_NewVCache  afs_xvcache W
+ *
+ * \param afid The file id of the file whose cache entry is being created.
+ *
+ * \return The new vcache struct.
+ */
+struct vcache *
+afs_NewVCache(struct VenusFid *afid, struct server *serverp)
+{
+    struct vcache *tvc;
+    afs_int32 i, j;
+    afs_int32 anumber = VCACHE_FREE;
+#ifdef AFS_AIX_ENV
+    struct gnode *gnodepnt;
+#endif
+#if !defined(AFS_LINUX22_ENV)
+    struct afs_q *tq, *uq;
+    int code, fv_slept;
+#endif
+
+    AFS_STATCNT(afs_NewVCache);
+
+    afs_FlushReclaimedVcaches();
+
+#if defined(AFS_LINUX22_ENV)
+    if(!afsd_dynamic_vcaches) {
+       afs_ShakeLooseVCaches(anumber);
+       if (afs_vcount >= afs_maxvcount) {
+           printf("afs_NewVCache - none freed\n");
+           return NULL;
+       }
+    }
+    tvc = afs_AllocVCache();
+#else /* AFS_LINUX22_ENV */
+    /* pull out a free cache entry */
+    if (!freeVCList) {
+        int loop = 0;
+       i = 0;
+       for (tq = VLRU.prev; (anumber > 0) && (tq != &VLRU); tq = uq) {
+           tvc = QTOV(tq);
+           uq = QPrev(tq);
+
+           if (tvc->f.states & CVFlushed) {
+               refpanic("CVFlushed on VLRU");
+           } else if (i++ > 2 * afs_cacheStats) {      /* even allowing for a few xallocs... */
+               refpanic("Increase -stat parameter of afsd(VLRU cycle?)");
+           } else if (QNext(uq) != tq) {
+               refpanic("VLRU inconsistent");
+           } else if (tvc->f.states & CVInit) {
+               continue;
+            }
+
+           if (!VREFCOUNT_GT(tvc,0)
+#if defined(AFS_DARWIN_ENV) && !defined(UKERNEL) && !defined(AFS_DARWIN80_ENV)
+               || ((VREFCOUNT(tvc) == 1) && 
+                   (UBCINFOEXISTS(AFSTOV(tvc))))
+#endif
+               && tvc->opens == 0 && (tvc->f.states & CUnlinkedDel) == 0) {
+#if defined (AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
+#ifdef AFS_DARWIN80_ENV
+               vnode_t tvp = AFSTOV(tvc);
+               /* VREFCOUNT_GT only sees usecounts, not iocounts */
+               /* so this may fail to actually recycle the vnode now */
+               /* must call vnode_get to avoid races. */
+                fv_slept = 0;
+               if (vnode_get(tvp) == 0) {
+                   fv_slept=1;
+                   /* must release lock, since vnode_put will immediately
+                      reclaim if there are no other users */
+                   ReleaseWriteLock(&afs_xvcache);
+                   AFS_GUNLOCK();
+                   vnode_recycle(tvp);
+                   vnode_put(tvp);
+                   AFS_GLOCK();
+                   ObtainWriteLock(&afs_xvcache, 336);
+               }
+               /* we can't use the vnode_recycle return value to figure
+                * this out, since the iocount we have to hold makes it
+                * always "fail" */
+               if (AFSTOV(tvc) == tvp) {
+                    if (anumber > 0 && fv_slept) {
+                       QRemove(&tvc->vlruq);
+                       QAdd(&VLRU, &tvc->vlruq);
+                    }
+                   code = EBUSY;
+               } else
+                   code = 0;
+#else /* AFS_DARWIN80_ENV */
+                /*
+                 * vgone() reclaims the vnode, which calls afs_FlushVCache(),
+                 * then it puts the vnode on the free list.
+                 * If we don't do this we end up with a cleaned vnode that's
+                 * not on the free list.
+                 * XXX assume FreeBSD is the same for now.
+                 */
+                AFS_GUNLOCK();
+#if defined(AFS_FBSD80_ENV)
+                /* vgone() is correct, but v_usecount is assumed not
+                 * to be 0, and I suspect that currently our usage ensures that
+                 * in fact it will */
+                if (vrefcnt(AFSTOV(tvc)) < 1) {
+                   vref(AFSTOV(tvc));
+                }
+                vn_lock(AFSTOV(tvc), LK_EXCLUSIVE | LK_RETRY); /* !glocked */
+#endif
+                vgone(AFSTOV(tvc));
+#if defined(AFS_FBSD80_ENV)
+                VOP_UNLOCK(AFSTOV(tvc), 0);
+#endif
+                fv_slept = 0;
+                code = 0;
+                AFS_GLOCK();
+#endif
+#else /* AFS_DARWIN80_ENV || AFS_XBSD_ENV */
+                code = afs_FlushVCache(tvc, &fv_slept);
+#endif /* AFS_DARWIN80_ENV || AFS_XBSD_ENV */
+               if (code == 0) {
+                   anumber--;
+               }
+               if (fv_slept) {
+                    if (loop++ > 100)
+                       break;
+                   uq = VLRU.prev;
+                   i = 0;
+                   continue;   /* start over - may have raced. */
+               }
+           }
+           if (tq == uq)
+               break;
+       }
+    } /* end of if (!freeVCList) */
+
+    if (!freeVCList) {
+       tvc = afs_AllocVCache();
     } else {
        tvc = freeVCList;       /* take from free list */
        freeVCList = tvc->nextfree;
        tvc->nextfree = NULL;
-    }
-#endif /* AFS_OSF_ENV */
+    } /* end of if (!freeVCList) */
 
-#ifdef AFS_MACH_ENV
-    vm_info_ptr = tvc->v.v_vm_info;
-#endif /* AFS_MACH_ENV */
+#endif /* AFS_LINUX22_ENV */
 
-#if defined(AFS_XBSD_ENV)
+#if defined(AFS_XBSD_ENV) || defined(AFS_DARWIN_ENV)
     if (tvc->v)
        panic("afs_NewVCache(): free vcache with vnode attached");
 #endif
 
-#if !defined(AFS_SGI_ENV) && !defined(AFS_OSF_ENV)
-    memset((char *)tvc, 0, sizeof(struct vcache));
+#if !defined(AFS_SGI_ENV) && !defined(AFS_LINUX22_ENV)
+
+#if defined(AFS_DISCON_ENV)
+    /* We need to preserve the slot that we're being stored into on
+     * disk */
+    { 
+       afs_uint32 slot;
+        slot = tvc->diskSlot;
+       memset(tvc, 0, sizeof(struct vcache));
+       tvc->diskSlot = slot;
+    }
+#else
+    memset(tvc, 0, sizeof(struct vcache));
+#endif
+
 #else
     tvc->uncred = 0;
+    memset(&(tvc->f), 0, sizeof(struct fvcache));
 #endif
 
-    RWLOCK_INIT(&tvc->lock, "vcache lock");
+    AFS_RWLOCK_INIT(&tvc->lock, "vcache lock");
 #if    defined(AFS_SUN5_ENV)
-    RWLOCK_INIT(&tvc->vlock, "vcache vlock");
+    AFS_RWLOCK_INIT(&tvc->vlock, "vcache vlock");
 #endif /* defined(AFS_SUN5_ENV) */
 
-#ifdef AFS_MACH_ENV
-    tvc->v.v_vm_info = vm_info_ptr;
-    tvc->v.v_vm_info->pager = MEMORY_OBJECT_NULL;
-#endif /* AFS_MACH_ENV */
+    tvc->mvid = NULL;
+    tvc->linkData = NULL;
+    tvc->cbExpires = 0;
+    tvc->opens = 0;
+    tvc->execsOrWriters = 0;
+    tvc->flockCount = 0;
+    tvc->f.states = CVInit;
+    tvc->last_looker = 0;
+    tvc->f.fid = *afid;
+    tvc->asynchrony = -1;
+    tvc->vc_error = 0;
+#if defined(AFS_LINUX26_ENV)
+    tvc->cred = NULL;
+#endif
+#ifdef AFS_TEXT_ENV
+    tvc->flushDV.low = tvc->flushDV.high = AFS_MAXDV;
+#endif
+    hzero(tvc->mapDV);
+    tvc->f.truncPos = AFS_NOTRUNC;        /* don't truncate until we need to */
+    hzero(tvc->f.m.DataVersion);  /* in case we copy it into flushDV */
+    tvc->Access = NULL;
+    tvc->callback = serverp;    /* to minimize chance that clear
+                                * request is lost */
+#if defined(AFS_DISCON_ENV)
+    QZero(&tvc->metadirty);
+#endif
+
+    i = VCHash(afid);
+    j = VCHashV(afid);
+
+    tvc->hnext = afs_vhashT[i];
+    afs_vhashT[i] = tvc;
+    QAdd(&afs_vhashTV[j], &tvc->vhashq);
+    
+    if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
+        refpanic("NewVCache VLRU inconsistent");
+    }
+    QAdd(&VLRU, &tvc->vlruq);   /* put in lruq */
+    if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
+        refpanic("NewVCache VLRU inconsistent2");
+    }
+    if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
+        refpanic("NewVCache VLRU inconsistent3");
+    }
+    if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
+        refpanic("NewVCache VLRU inconsistent4");
+    }
+    vcachegen++;
+    /* it should now be safe to drop the xvcache lock */
 #ifdef AFS_OBSD_ENV
+    ReleaseWriteLock(&afs_xvcache);
     AFS_GUNLOCK();
     afs_nbsd_getnewvnode(tvc); /* includes one refcount */
     AFS_GLOCK();
+    ObtainWriteLock(&afs_xvcache,337);
     lockinit(&tvc->rwlock, PINOD, "vcache", 0, 0);
 #endif
+#ifdef AFS_DARWIN_ENV
+    ReleaseWriteLock(&afs_xvcache);
+    AFS_GUNLOCK();
+    afs_darwin_getnewvnode(tvc);       /* includes one refcount */
+    AFS_GLOCK();
+    ObtainWriteLock(&afs_xvcache,338);
+#ifdef AFS_DARWIN80_ENV
+    LOCKINIT(tvc->rwlock);
+#else
+    lockinit(&tvc->rwlock, PINOD, "vcache", 0, 0);
+#endif
+#endif
 #ifdef AFS_FBSD_ENV
     {
        struct vnode *vp;
 
+       ReleaseWriteLock(&afs_xvcache);
        AFS_GUNLOCK();
-#ifdef AFS_FBSD50_ENV
+#if defined(AFS_FBSD60_ENV)
+       if (getnewvnode(MOUNT_AFS, afs_globalVFS, &afs_vnodeops, &vp))
+#elif defined(AFS_FBSD50_ENV)
        if (getnewvnode(MOUNT_AFS, afs_globalVFS, afs_vnodeop_p, &vp))
 #else
        if (getnewvnode(VT_AFS, afs_globalVFS, afs_vnodeop_p, &vp))
 #endif
            panic("afs getnewvnode");   /* can't happen */
+#ifdef AFS_FBSD70_ENV
+    /* XXX verified on 80--TODO check on 7x */
+    if (!vp->v_mount) {
+        vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); /* !glocked */
+        insmntque(vp, afs_globalVFS);
+        VOP_UNLOCK(vp, 0);
+    }
+#endif
        AFS_GLOCK();
+       ObtainWriteLock(&afs_xvcache,339);
        if (tvc->v != NULL) {
            /* I'd like to know if this ever happens...
             * We don't drop global for the rest of this function,
@@ -863,112 +1076,26 @@ restart:
        lockinit(&tvc->rwlock, PINOD, "vcache", 0, 0);
     }
 #endif
-    tvc->parentVnode = 0;
-    tvc->mvid = NULL;
-    tvc->linkData = NULL;
-    tvc->cbExpires = 0;
-    tvc->opens = 0;
-    tvc->execsOrWriters = 0;
-    tvc->flockCount = 0;
-    tvc->anyAccess = 0;
-    tvc->states = 0;
-    tvc->last_looker = 0;
-    tvc->fid = *afid;
-    tvc->asynchrony = -1;
-    tvc->vc_error = 0;
-    afs_symhint_inval(tvc);
-#ifdef AFS_TEXT_ENV
-    tvc->flushDV.low = tvc->flushDV.high = AFS_MAXDV;
-#endif
-    hzero(tvc->mapDV);
-    tvc->truncPos = AFS_NOTRUNC;       /* don't truncate until we need to */
-    hzero(tvc->m.DataVersion); /* in case we copy it into flushDV */
-#if defined(AFS_LINUX22_ENV)
-    {
-       struct inode *ip = AFSTOI(tvc);
-       struct address_space *mapping = &ip->i_data;
-
-#if defined(AFS_LINUX26_ENV)
-       inode_init_once(ip);
-#else
-       sema_init(&ip->i_sem, 1);
-       INIT_LIST_HEAD(&ip->i_hash);
-       INIT_LIST_HEAD(&ip->i_dentry);
-#if defined(AFS_LINUX24_ENV)
-       sema_init(&ip->i_zombie, 1);
-       init_waitqueue_head(&ip->i_wait);
-       spin_lock_init(&ip->i_data.i_shared_lock);
-#ifdef STRUCT_ADDRESS_SPACE_HAS_PAGE_LOCK
-       spin_lock_init(&ip->i_data.page_lock);
-#endif
-       INIT_LIST_HEAD(&ip->i_data.clean_pages);
-       INIT_LIST_HEAD(&ip->i_data.dirty_pages);
-       INIT_LIST_HEAD(&ip->i_data.locked_pages);
-       INIT_LIST_HEAD(&ip->i_dirty_buffers);
-#ifdef STRUCT_INODE_HAS_I_DIRTY_DATA_BUFFERS
-       INIT_LIST_HEAD(&ip->i_dirty_data_buffers);
-#endif
-#ifdef STRUCT_INODE_HAS_I_DEVICES
-       INIT_LIST_HEAD(&ip->i_devices);
-#endif
-#ifdef STRUCT_INODE_HAS_I_TRUNCATE_SEM
-       init_rwsem(&ip->i_truncate_sem);
-#endif
-#ifdef STRUCT_INODE_HAS_I_ALLOC_SEM
-       init_rwsem(&ip->i_alloc_sem);
-#endif
-
-#else /* AFS_LINUX22_ENV */
-       sema_init(&ip->i_atomic_write, 1);
-       init_waitqueue(&ip->i_wait);
-#endif
-#endif
-
-#if defined(AFS_LINUX24_ENV)
-       mapping->host = ip;
-       ip->i_mapping = mapping;
-#ifdef STRUCT_ADDRESS_SPACE_HAS_GFP_MASK
-       ip->i_data.gfp_mask = GFP_HIGHUSER;
-#endif
-#if defined(AFS_LINUX26_ENV)
-       mapping_set_gfp_mask(mapping, GFP_HIGHUSER);
-       {
-           extern struct backing_dev_info afs_backing_dev_info;
-
-           mapping->backing_dev_info = &afs_backing_dev_info;
-       }
-#endif
-#endif
-
-#if !defined(AFS_LINUX26_ENV)
-       if (afs_globalVFS)
-           ip->i_dev = afs_globalVFS->s_dev;
-#else
-#ifdef STRUCT_INODE_HAS_I_SECURITY
-       ip->i_security = NULL;
-       if (security_inode_alloc(ip))
-           panic("Cannot allocate inode security");
-#endif
-#endif
-       ip->i_sb = afs_globalVFS;
-       put_inode_on_dummy_list(ip);
-    }
-#endif
 
-#ifdef AFS_OSF_ENV
+#if defined(AFS_LINUX22_ENV)
     /* Hold it for the LRU (should make count 2) */
     VN_HOLD(AFSTOV(tvc));
-#else /* AFS_OSF_ENV */
-#if !defined(AFS_XBSD_ENV)
+#elif !(defined (AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV))
     VREFCOUNT_SET(tvc, 1);     /* us */
-#endif /* AFS_XBSD_ENV */
-#endif /* AFS_OSF_ENV */
+#endif
+
 #ifdef AFS_AIX32_ENV
     LOCK_INIT(&tvc->pvmlock, "vcache pvmlock");
     tvc->vmh = tvc->segid = NULL;
     tvc->credp = NULL;
 #endif
-#if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV) || defined(AFS_SUN5_ENV)
+
+#if defined(AFS_CACHE_BYPASS)
+    tvc->cachingStates = 0;
+    tvc->cachingTransitions = 0;
+#endif
+
+#ifdef AFS_BOZONLOCK_ENV
 #if    defined(AFS_SUN5_ENV)
     rw_init(&tvc->rwlock, "vcache rwlock", RW_DEFAULT, NULL);
 
@@ -990,15 +1117,12 @@ restart:
     afs_BozonInit(&tvc->pvnLock, tvc);
 #endif
 
-    tvc->Access = NULL;
-    tvc->callback = serverp;   /* to minimize chance that clear
-                                * request is lost */
     /* initialize vnode data, note vrefCount is v.v_count */
 #ifdef AFS_AIX_ENV
     /* Don't forget to free the gnode space */
     tvc->v.v_gnode = gnodepnt =
        (struct gnode *)osi_AllocSmallSpace(sizeof(struct gnode));
-    memset((char *)gnodepnt, 0, sizeof(struct gnode));
+    memset(gnodepnt, 0, sizeof(struct gnode));
 #endif
 #ifdef AFS_SGI64_ENV
     memset((void *)&(tvc->vc_bhv_desc), 0, sizeof(tvc->vc_bhv_desc));
@@ -1022,26 +1146,15 @@ restart:
 #endif
     vnode_pcache_init(&tvc->v);
 #if defined(DEBUG) && defined(VNODE_INIT_BITLOCK)
-    /* Above define is never true execpt in SGI test kernels. */
-    init_bitlock(&(tvc->v.v_flag, VLOCK, "vnode", tvc->v.v_number);
+    /* Above define is never true except in SGI test kernels. */
+    init_bitlock(&(tvc->v.v_flag, VLOCK, "vnode", tvc->v.v_number));
 #endif
 #ifdef INTR_KTHREADS
-                AFS_VN_INIT_BUF_LOCK(&(tvc->v));
+    AFS_VN_INIT_BUF_LOCK(&(tvc->v));
 #endif
 #else
     SetAfsVnode(AFSTOV(tvc));
 #endif /* AFS_SGI64_ENV */
-#ifdef AFS_DARWIN_ENV
-    tvc->v.v_ubcinfo = UBC_INFO_NULL;
-    lockinit(&tvc->rwlock, PINOD, "vcache rwlock", 0, 0);
-    cache_purge(AFSTOV(tvc));
-    tvc->v.v_data = tvc;
-    tvc->v.v_tag = VT_AFS;
-    /* VLISTNONE(&tvc->v); */
-    tvc->v.v_freelist.tqe_next = 0;
-    tvc->v.v_freelist.tqe_prev = (struct vnode **)0xdeadb;
-    tvc->vrefCount += DARWIN_REFBASE;
-#endif
     /*
      * The proper value for mvstat (for root fids) is setup by the caller.
      */
@@ -1050,7 +1163,9 @@ restart:
        tvc->mvstat = 2;
     if (afs_globalVFS == 0)
        osi_Panic("afs globalvfs");
+#if !defined(AFS_LINUX22_ENV)
     vSetVfsp(tvc, afs_globalVFS);
+#endif
     vSetType(tvc, VREG);
 #ifdef AFS_AIX_ENV
     tvc->v.v_vfsnext = afs_globalVFS->vfs_vnodes;      /* link off vfs */
@@ -1061,17 +1176,6 @@ restart:
     tvc->v.v_next = gnodepnt->gn_vnode;        /*Single vnode per gnode for us! */
     gnodepnt->gn_vnode = &tvc->v;
 #endif
-#ifdef AFS_DEC_ENV
-    tvc->v.g_dev = ((struct mount *)afs_globalVFS->vfs_data)->m_dev;
-#endif
-#if    defined(AFS_DUX40_ENV)
-    insmntque(tvc, afs_globalVFS, &afs_ubcops);
-#else
-#ifdef  AFS_OSF_ENV
-    /* Is this needed??? */
-    insmntque(tvc, afs_globalVFS);
-#endif /* AFS_OSF_ENV */
-#endif /* AFS_DUX40_ENV */
 #if defined(AFS_SGI_ENV)
     VN_SET_DPAGES(&(tvc->v), (struct pfdat *)NULL);
     osi_Assert((tvc->v.v_flag & VINACT) == 0);
@@ -1091,53 +1195,33 @@ restart:
     vn_initlist((struct vnlist *)&tvc->v);
     tvc->lastr = 0;
 #endif /* AFS_SGI_ENV */
-    tvc->h1.dchint = 0;
+    tvc->dchint = NULL;
     osi_dnlc_purgedp(tvc);     /* this may be overkill */
-    memset((char *)&(tvc->quick), 0, sizeof(struct vtodc));
-    memset((char *)&(tvc->callsort), 0, sizeof(struct afs_q));
+    memset(&(tvc->callsort), 0, sizeof(struct afs_q));
     tvc->slocks = NULL;
-    i = VCHash(afid);
-
-    tvc->hnext = afs_vhashT[i];
-    afs_vhashT[i] = tvc;
-    if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
-       refpanic("NewVCache VLRU inconsistent");
-    }
-    QAdd(&VLRU, &tvc->vlruq);  /* put in lruq */
-    if ((VLRU.next->prev != &VLRU) || (VLRU.prev->next != &VLRU)) {
-       refpanic("NewVCache VLRU inconsistent2");
-    }
-    if (tvc->vlruq.next->prev != &(tvc->vlruq)) {
-       refpanic("NewVCache VLRU inconsistent3");
-    }
-    if (tvc->vlruq.prev->next != &(tvc->vlruq)) {
-       refpanic("NewVCache VLRU inconsistent4");
-    }
-    vcachegen++;
+    tvc->f.states &=~ CVInit;
+    afs_osi_Wakeup(&tvc->f.states);
 
     return tvc;
 
 }                              /*afs_NewVCache */
 
 
-/*
- * afs_FlushActiveVcaches
+/*!
+ * ???
  *
- * Description:
- *     ???
+ * LOCK: afs_FlushActiveVcaches afs_xvcache N
  *
- * Parameters:
- *     doflocks : Do we handle flocks?
+ * \param doflocks : Do we handle flocks?
  */
-/* LOCK: afs_FlushActiveVcaches afs_xvcache N */
 void
 afs_FlushActiveVcaches(register afs_int32 doflocks)
 {
     register struct vcache *tvc;
     register int i;
-    register struct conn *tc;
+    register struct afs_conn *tc;
     register afs_int32 code;
-    register struct AFS_UCRED *cred = NULL;
+    afs_ucred_t *cred = NULL;
     struct vrequest treq, ureq;
     struct AFSVolSync tsync;
     int didCore;
@@ -1146,6 +1230,12 @@ afs_FlushActiveVcaches(register afs_int32 doflocks)
     ObtainReadLock(&afs_xvcache);
     for (i = 0; i < VCSIZE; i++) {
        for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
+            if (tvc->f.states & CVInit) continue;
+#ifdef AFS_DARWIN80_ENV
+            if (tvc->f.states & CDeadVnode &&
+                (tvc->f.states & (CCore|CUnlinkedDel) ||
+                 tvc->flockCount)) panic("Dead vnode has core/unlinkedel/flock");
+#endif
            if (doflocks && tvc->flockCount != 0) {
                /* if this entry has an flock, send a keep-alive call out */
                osi_vnhold(tvc, 0);
@@ -1155,28 +1245,33 @@ afs_FlushActiveVcaches(register afs_int32 doflocks)
                    afs_InitReq(&treq, afs_osi_credp);
                    treq.flags |= O_NONBLOCK;
 
-                   tc = afs_Conn(&tvc->fid, &treq, SHARED_LOCK);
+                   tc = afs_Conn(&tvc->f.fid, &treq, SHARED_LOCK);
                    if (tc) {
                        XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_EXTENDLOCK);
                        RX_AFS_GUNLOCK();
                        code =
                            RXAFS_ExtendLock(tc->id,
-                                            (struct AFSFid *)&tvc->fid.Fid,
+                                            (struct AFSFid *)&tvc->f.fid.Fid,
                                             &tsync);
                        RX_AFS_GLOCK();
                        XSTATS_END_TIME;
                    } else
                        code = -1;
                } while (afs_Analyze
-                        (tc, code, &tvc->fid, &treq,
+                        (tc, code, &tvc->f.fid, &treq,
                          AFS_STATS_FS_RPCIDX_EXTENDLOCK, SHARED_LOCK, NULL));
 
                ReleaseWriteLock(&tvc->lock);
-               ObtainReadLock(&afs_xvcache);
-               AFS_FAST_RELE(tvc);
+#ifdef AFS_DARWIN80_ENV
+                AFS_FAST_RELE(tvc);
+                ObtainReadLock(&afs_xvcache);
+#else
+                ObtainReadLock(&afs_xvcache);
+                AFS_FAST_RELE(tvc);
+#endif
            }
            didCore = 0;
-           if ((tvc->states & CCore) || (tvc->states & CUnlinkedDel)) {
+           if ((tvc->f.states & CCore) || (tvc->f.states & CUnlinkedDel)) {
                /*
                 * Don't let it evaporate in case someone else is in
                 * this code.  Also, drop the afs_xvcache lock while
@@ -1184,21 +1279,21 @@ afs_FlushActiveVcaches(register afs_int32 doflocks)
                 */
                osi_vnhold(tvc, 0);
                ReleaseReadLock(&afs_xvcache);
-#if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV)
+#ifdef AFS_BOZONLOCK_ENV
                afs_BozonLock(&tvc->pvnLock, tvc);
 #endif
 #if defined(AFS_SGI_ENV)
                /*
                 * That's because if we come in via the CUnlinkedDel bit state path we'll be have 0 refcnt
                 */
-               osi_Assert(VREFCOUNT(tvc) > 0);
+               osi_Assert(VREFCOUNT_GT(tvc,0));
                AFS_RWLOCK((vnode_t *) tvc, VRWLOCK_WRITE);
 #endif
                ObtainWriteLock(&tvc->lock, 52);
-               if (tvc->states & CCore) {
-                   tvc->states &= ~CCore;
+               if (tvc->f.states & CCore) {
+                   tvc->f.states &= ~CCore;
                    /* XXXX Find better place-holder for cred XXXX */
-                   cred = (struct AFS_UCRED *)tvc->linkData;
+                   cred = (afs_ucred_t *)tvc->linkData;
                    tvc->linkData = NULL;       /* XXX */
                    afs_InitReq(&ureq, cred);
                    afs_Trace2(afs_iclSetp, CM_TRACE_ACTCCORE,
@@ -1206,22 +1301,22 @@ afs_FlushActiveVcaches(register afs_int32 doflocks)
                               tvc->execsOrWriters);
                    code = afs_StoreOnLastReference(tvc, &ureq);
                    ReleaseWriteLock(&tvc->lock);
-#if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV)
+#ifdef AFS_BOZONLOCK_ENV
                    afs_BozonUnlock(&tvc->pvnLock, tvc);
 #endif
                    hzero(tvc->flushDV);
                    osi_FlushText(tvc);
                    didCore = 1;
                    if (code && code != VNOVNODE) {
-                       afs_StoreWarn(code, tvc->fid.Fid.Volume,
+                       afs_StoreWarn(code, tvc->f.fid.Fid.Volume,
                                      /* /dev/console */ 1);
                    }
-               } else if (tvc->states & CUnlinkedDel) {
+               } else if (tvc->f.states & CUnlinkedDel) {
                    /*
                     * Ignore errors
                     */
                    ReleaseWriteLock(&tvc->lock);
-#if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV)
+#ifdef AFS_BOZONLOCK_ENV
                    afs_BozonUnlock(&tvc->pvnLock, tvc);
 #endif
 #if defined(AFS_SGI_ENV)
@@ -1234,44 +1329,40 @@ afs_FlushActiveVcaches(register afs_int32 doflocks)
                } else {
                    /* lost (or won, perhaps) the race condition */
                    ReleaseWriteLock(&tvc->lock);
-#if defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV)
+#ifdef AFS_BOZONLOCK_ENV
                    afs_BozonUnlock(&tvc->pvnLock, tvc);
 #endif
                }
 #if defined(AFS_SGI_ENV)
                AFS_RWUNLOCK((vnode_t *) tvc, VRWLOCK_WRITE);
 #endif
-               ObtainReadLock(&afs_xvcache);
+#ifdef AFS_DARWIN80_ENV
                AFS_FAST_RELE(tvc);
                if (didCore) {
-#ifdef AFS_GFS_ENV
-                   VREFCOUNT_DEC(tvc);
+                   AFS_RELE(AFSTOV(tvc));
+                   /* Matches write code setting CCore flag */
+                   crfree(cred);
+               }
+               ObtainReadLock(&afs_xvcache);
 #else
+               ObtainReadLock(&afs_xvcache);
+               AFS_FAST_RELE(tvc);
+               if (didCore) {
                    AFS_RELE(AFSTOV(tvc));
-#endif
                    /* Matches write code setting CCore flag */
                    crfree(cred);
                }
-           }
-#ifdef AFS_DARWIN_ENV
-           if (VREFCOUNT(tvc) == 1 + DARWIN_REFBASE
-               && UBCINFOEXISTS(&tvc->v)) {
-               if (tvc->opens)
-                   panic("flushactive open, hasubc, but refcnt 1");
-               osi_VM_TryReclaim(tvc, 0);
-           }
 #endif
+           }
        }
     }
     ReleaseReadLock(&afs_xvcache);
 }
 
 
-/*
- * afs_VerifyVCache
- *
- * Description:
- *     Make sure a cache entry is up-to-date status-wise.
+
+/*!
+ *   Make sure a cache entry is up-to-date status-wise.
  *
  * NOTE: everywhere that calls this can potentially be sped up
  *       by checking CStatd first, and avoiding doing the InitReq
@@ -1280,11 +1371,26 @@ afs_FlushActiveVcaches(register afs_int32 doflocks)
  *  Anymore, the only places that call this KNOW already that the
  *  vcache is not up-to-date, so we don't screw around.
  *
- * Parameters:
- *     avc  : Ptr to vcache entry to verify.
- *     areq : ???
+ * \param avc  : Ptr to vcache entry to verify.
+ * \param areq : ???
  */
 
+/*!
+ * 
+ *   Make sure a cache entry is up-to-date status-wise.
+ *   
+ *   NOTE: everywhere that calls this can potentially be sped up
+ *       by checking CStatd first, and avoiding doing the InitReq
+ *       if this is up-to-date.
+ *
+ *   Anymore, the only places that call this KNOW already that the
+ * vcache is not up-to-date, so we don't screw around.
+ *
+ * \param avc Pointer to vcache entry to verify.
+ * \param areq
+ *
+ * \return 0 for success or other error codes.
+ */
 int
 afs_VerifyVCache2(struct vcache *avc, struct vrequest *areq)
 {
@@ -1292,23 +1398,15 @@ afs_VerifyVCache2(struct vcache *avc, struct vrequest *areq)
 
     AFS_STATCNT(afs_VerifyVCache);
 
-#if defined(AFS_OSF_ENV)
-    ObtainReadLock(&avc->lock);
-    if (afs_IsWired(avc)) {
-       ReleaseReadLock(&avc->lock);
-       return 0;
-    }
-    ReleaseReadLock(&avc->lock);
-#endif /* AFS_OSF_ENV */
     /* otherwise we must fetch the status info */
 
     ObtainWriteLock(&avc->lock, 53);
-    if (avc->states & CStatd) {
+    if (avc->f.states & CStatd) {
        ReleaseWriteLock(&avc->lock);
        return 0;
     }
     ObtainWriteLock(&afs_xcbhash, 461);
-    avc->states &= ~(CStatd | CUnique);
+    avc->f.states &= ~(CStatd | CUnique);
     avc->callback = NULL;
     afs_DequeueCallback(avc);
     ReleaseWriteLock(&afs_xcbhash);
@@ -1318,13 +1416,13 @@ afs_VerifyVCache2(struct vcache *avc, struct vrequest *areq)
      * it's possible that the contents of this directory, or this
      * file's name have changed, thus invalidating the dnlc contents.
      */
-    if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
+    if ((avc->f.states & CForeign) || (avc->f.fid.Fid.Vnode & 1))
        osi_dnlc_purgedp(avc);
     else
        osi_dnlc_purgevp(avc);
 
     /* fetch the status info */
-    tvc = afs_GetVCache(&avc->fid, areq, NULL, avc);
+    tvc = afs_GetVCache(&avc->f.fid, areq, NULL, avc);
     if (!tvc)
        return ENOENT;
     /* Put it back; caller has already incremented vrefCount */
@@ -1334,20 +1432,14 @@ afs_VerifyVCache2(struct vcache *avc, struct vrequest *areq)
 }                              /*afs_VerifyVCache */
 
 
-/*
- * afs_SimpleVStat
- *
- * Description:
- *     Simple copy of stat info into cache.
+/*!
+ * Simple copy of stat info into cache.
  *
- * Parameters:
- *     avc   : Ptr to vcache entry involved.
- *     astat : Ptr to stat info to copy.
+ * Callers:as of 1992-04-29, only called by WriteVCache
  *
- * Environment:
- *     Nothing interesting.
+ * \param avc   Ptr to vcache entry involved.
+ * \param astat Ptr to stat info to copy.
  *
- * Callers:  as of 1992-04-29, only called by WriteVCache
  */
 static void
 afs_SimpleVStat(register struct vcache *avc,
@@ -1370,7 +1462,7 @@ afs_SimpleVStat(register struct vcache *avc,
 #if defined(AFS_SGI_ENV)
        osi_Assert((valusema(&avc->vc_rwlock) <= 0)
                   && (OSI_GET_LOCKID() == avc->vc_rwlockid));
-       if (length < avc->m.Length) {
+       if (length < avc->f.m.Length) {
            vnode_t *vp = (vnode_t *) avc;
 
            osi_Assert(WriteLocked(&avc->lock));
@@ -1383,26 +1475,26 @@ afs_SimpleVStat(register struct vcache *avc,
 #endif
        /* if writing the file, don't fetch over this value */
        afs_Trace3(afs_iclSetp, CM_TRACE_SIMPLEVSTAT, ICL_TYPE_POINTER, avc,
-                  ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length),
+                  ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->f.m.Length),
                   ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(length));
-       avc->m.Length = length;
-       avc->m.Date = astat->ClientModTime;
+       avc->f.m.Length = length;
+       avc->f.m.Date = astat->ClientModTime;
     }
-    avc->m.Owner = astat->Owner;
-    avc->m.Group = astat->Group;
-    avc->m.Mode = astat->UnixModeBits;
+    avc->f.m.Owner = astat->Owner;
+    avc->f.m.Group = astat->Group;
+    avc->f.m.Mode = astat->UnixModeBits;
     if (vType(avc) == VREG) {
-       avc->m.Mode |= S_IFREG;
+       avc->f.m.Mode |= S_IFREG;
     } else if (vType(avc) == VDIR) {
-       avc->m.Mode |= S_IFDIR;
+       avc->f.m.Mode |= S_IFDIR;
     } else if (vType(avc) == VLNK) {
-       avc->m.Mode |= S_IFLNK;
-       if ((avc->m.Mode & 0111) == 0)
+       avc->f.m.Mode |= S_IFLNK;
+       if ((avc->f.m.Mode & 0111) == 0)
            avc->mvstat = 1;
     }
-    if (avc->states & CForeign) {
+    if (avc->f.states & CForeign) {
        struct axscache *ac;
-       avc->anyAccess = astat->AnonymousAccess;
+       avc->f.anyAccess = astat->AnonymousAccess;
 #ifdef badidea
        if ((astat->CallerAccess & ~astat->AnonymousAccess))
            /*   USED TO SAY :
@@ -1426,24 +1518,20 @@ afs_SimpleVStat(register struct vcache *avc,
                afs_AddAxs(avc->Access, areq->uid, astat->CallerAccess);
     }
 
-
 }                              /*afs_SimpleVStat */
 
 
-/*
- * afs_WriteVCache
+/*!
+ * Store the status info *only* back to the server for a
+ * fid/vrequest.
  *
- * Description:
- *     Store the status info *only* back to the server for a
- *     fid/vrequest.
+ * Environment: Must be called with a shared lock held on the vnode.
  *
- * Parameters:
- *     avc     : Ptr to the vcache entry.
- *     astatus : Ptr to the status info to store.
- *     areq    : Ptr to the associated vrequest.
+ * \param avc Ptr to the vcache entry.
+ * \param astatus Ptr to the status info to store.
+ * \param areq Ptr to the associated vrequest.
  *
- * Environment:
- *     Must be called with a shared lock held on the vnode.
+ * \return Operation status.
  */
 
 int
@@ -1452,71 +1540,145 @@ afs_WriteVCache(register struct vcache *avc,
                struct vrequest *areq)
 {
     afs_int32 code;
-    struct conn *tc;
+    struct afs_conn *tc;
     struct AFSFetchStatus OutStatus;
     struct AFSVolSync tsync;
     XSTATS_DECLS;
     AFS_STATCNT(afs_WriteVCache);
     afs_Trace2(afs_iclSetp, CM_TRACE_WVCACHE, ICL_TYPE_POINTER, avc,
-              ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length));
-
+              ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->f.m.Length));
     do {
-       tc = afs_Conn(&avc->fid, areq, SHARED_LOCK);
+       tc = afs_Conn(&avc->f.fid, areq, SHARED_LOCK);
        if (tc) {
            XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_STORESTATUS);
            RX_AFS_GUNLOCK();
            code =
-               RXAFS_StoreStatus(tc->id, (struct AFSFid *)&avc->fid.Fid,
+               RXAFS_StoreStatus(tc->id, (struct AFSFid *)&avc->f.fid.Fid,
                                  astatus, &OutStatus, &tsync);
            RX_AFS_GLOCK();
            XSTATS_END_TIME;
        } else
            code = -1;
     } while (afs_Analyze
-            (tc, code, &avc->fid, areq, AFS_STATS_FS_RPCIDX_STORESTATUS,
+            (tc, code, &avc->f.fid, areq, AFS_STATS_FS_RPCIDX_STORESTATUS,
              SHARED_LOCK, NULL));
 
-    UpgradeSToWLock(&avc->lock, 20);
-    if (code == 0) {
-       /* success, do the changes locally */
-       afs_SimpleVStat(avc, &OutStatus, areq);
-       /*
-        * Update the date, too.  SimpleVStat didn't do this, since
-        * it thought we were doing this after fetching new status
-        * over a file being written.
-        */
-       avc->m.Date = OutStatus.ClientModTime;
-    } else {
-       /* failure, set up to check with server next time */
-       ObtainWriteLock(&afs_xcbhash, 462);
-       afs_DequeueCallback(avc);
-       avc->states &= ~(CStatd | CUnique);     /* turn off stat valid flag */
-       ReleaseWriteLock(&afs_xcbhash);
-       if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
-           osi_dnlc_purgedp(avc);      /* if it (could be) a directory */
-    }
+    UpgradeSToWLock(&avc->lock, 20);
+    if (code == 0) {
+       /* success, do the changes locally */
+       afs_SimpleVStat(avc, &OutStatus, areq);
+       /*
+        * Update the date, too.  SimpleVStat didn't do this, since
+        * it thought we were doing this after fetching new status
+        * over a file being written.
+        */
+       avc->f.m.Date = OutStatus.ClientModTime;
+    } else {
+       /* failure, set up to check with server next time */
+       ObtainWriteLock(&afs_xcbhash, 462);
+       afs_DequeueCallback(avc);
+       avc->f.states &= ~(CStatd | CUnique);   /* turn off stat valid flag */
+       ReleaseWriteLock(&afs_xcbhash);
+       if ((avc->f.states & CForeign) || (avc->f.fid.Fid.Vnode & 1))
+           osi_dnlc_purgedp(avc);      /* if it (could be) a directory */
+    }
+    ConvertWToSLock(&avc->lock);
+    return code;
+
+}                              /*afs_WriteVCache */
+#if defined(AFS_DISCON_ENV)
+
+/*!
+ * Store status info only locally, set the proper disconnection flags
+ * and add to dirty list.
+ *
+ * \param avc The vcache to be written locally.
+ * \param astatus Get attr fields from local store.
+ * \param attrs This one is only of the vs_size.
+ *
+ * \note Must be called with a shared lock on the vnode
+ */
+int afs_WriteVCacheDiscon(register struct vcache *avc,
+                               register struct AFSStoreStatus *astatus,
+                               struct vattr *attrs)
+{
+    afs_int32 code = 0;
+    afs_int32 flags = 0;
+
+    UpgradeSToWLock(&avc->lock, 700);
+
+    if (!astatus->Mask) {
+
+       return code;
+
+    } else {
+
+       /* Set attributes. */
+       if (astatus->Mask & AFS_SETMODTIME) {
+               avc->f.m.Date = astatus->ClientModTime;
+               flags |= VDisconSetTime;
+       }
+
+       if (astatus->Mask & AFS_SETOWNER) {
+               printf("Not allowed yet. \n");
+               /*avc->f.m.Owner = astatus->Owner;*/
+       }
+
+       if (astatus->Mask & AFS_SETGROUP) {
+               printf("Not allowed yet. \n");
+               /*avc->f.m.Group =  astatus->Group;*/
+       }
+
+       if (astatus->Mask & AFS_SETMODE) {
+               avc->f.m.Mode = astatus->UnixModeBits;
+
+#if 0  /* XXX: Leaving this out, so it doesn't mess up the file type flag.*/
+
+               if (vType(avc) == VREG) {
+                       avc->f.m.Mode |= S_IFREG;
+               } else if (vType(avc) == VDIR) {
+                       avc->f.m.Mode |= S_IFDIR;
+               } else if (vType(avc) == VLNK) {
+                       avc->f.m.Mode |= S_IFLNK;
+                       if ((avc->f.m.Mode & 0111) == 0)
+                               avc->mvstat = 1;
+               }
+#endif
+               flags |= VDisconSetMode;
+        }              /* if(astatus.Mask & AFS_SETMODE) */
+
+     }                         /* if (!astatus->Mask) */
+
+     if (attrs->va_size > 0) {
+       /* XXX: Do I need more checks? */
+       /* Truncation operation. */
+       flags |= VDisconTrunc;
+     }
+
+    if (flags)
+       afs_DisconAddDirty(avc, flags, 1);
+
+    /* XXX: How about the rest of the fields? */
+
     ConvertWToSLock(&avc->lock);
+
     return code;
+}
 
-}                              /*afs_WriteVCache */
+#endif
 
-/*
- * afs_ProcessFS
+/*!
+ * Copy astat block into vcache info
  *
- * Description:
- *     Copy astat block into vcache info
- *
- * Parameters:
- *     avc   : Ptr to vcache entry.
- *     astat : Ptr to stat block to copy in.
- *     areq  : Ptr to associated request.
+ * \note This code may get dataversion and length out of sync if the file has
+ * been modified.  This is less than ideal.  I haven't thought about it sufficiently 
+ * to be certain that it is adequate.
  *
- * Environment:
- *     Must be called under a write lock
+ * \note Environment: Must be called under a write lock
  *
- * Note: this code may get dataversion and length out of sync if the file has
- *       been modified.  This is less than ideal.  I haven't thought about
- *       it sufficiently to be certain that it is adequate.
+ * \param avc  Ptr to vcache entry.
+ * \param astat Ptr to stat block to copy in.
+ * \param areq Ptr to associated request.
  */
 void
 afs_ProcessFS(register struct vcache *avc,
@@ -1546,35 +1708,35 @@ afs_ProcessFS(register struct vcache *avc,
         *  values.
         */
        afs_Trace3(afs_iclSetp, CM_TRACE_PROCESSFS, ICL_TYPE_POINTER, avc,
-                  ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length),
+                  ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->f.m.Length),
                   ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(length));
-       avc->m.Length = length;
-       avc->m.Date = astat->ClientModTime;
-    }
-    hset64(avc->m.DataVersion, astat->dataVersionHigh, astat->DataVersion);
-    avc->m.Owner = astat->Owner;
-    avc->m.Mode = astat->UnixModeBits;
-    avc->m.Group = astat->Group;
-    avc->m.LinkCount = astat->LinkCount;
+       avc->f.m.Length = length;
+       avc->f.m.Date = astat->ClientModTime;
+    }
+    hset64(avc->f.m.DataVersion, astat->dataVersionHigh, astat->DataVersion);
+    avc->f.m.Owner = astat->Owner;
+    avc->f.m.Mode = astat->UnixModeBits;
+    avc->f.m.Group = astat->Group;
+    avc->f.m.LinkCount = astat->LinkCount;
     if (astat->FileType == File) {
        vSetType(avc, VREG);
-       avc->m.Mode |= S_IFREG;
+       avc->f.m.Mode |= S_IFREG;
     } else if (astat->FileType == Directory) {
        vSetType(avc, VDIR);
-       avc->m.Mode |= S_IFDIR;
+       avc->f.m.Mode |= S_IFDIR;
     } else if (astat->FileType == SymbolicLink) {
-       if (afs_fakestat_enable && (avc->m.Mode & 0111) == 0) {
+       if (afs_fakestat_enable && (avc->f.m.Mode & 0111) == 0) {
            vSetType(avc, VDIR);
-           avc->m.Mode |= S_IFDIR;
+           avc->f.m.Mode |= S_IFDIR;
        } else {
            vSetType(avc, VLNK);
-           avc->m.Mode |= S_IFLNK;
+           avc->f.m.Mode |= S_IFLNK;
        }
-       if ((avc->m.Mode & 0111) == 0) {
+       if ((avc->f.m.Mode & 0111) == 0) {
            avc->mvstat = 1;
        }
     }
-    avc->anyAccess = astat->AnonymousAccess;
+    avc->f.anyAccess = astat->AnonymousAccess;
 #ifdef badidea
     if ((astat->CallerAccess & ~astat->AnonymousAccess))
        /*   USED TO SAY :
@@ -1599,16 +1761,22 @@ afs_ProcessFS(register struct vcache *avc,
        else                    /* not found, add a new one if possible */
            afs_AddAxs(avc->Access, areq->uid, astat->CallerAccess);
     }
-#ifdef AFS_LINUX22_ENV
-    vcache2inode(avc);         /* Set the inode attr cache */
-#endif
-#ifdef AFS_DARWIN_ENV
-    osi_VM_Setup(avc, 1);
-#endif
-
 }                              /*afs_ProcessFS */
 
 
+/*!
+ * Get fid from server.
+ *
+ * \param afid 
+ * \param areq Request to be passed on.
+ * \param name Name of ?? to lookup.
+ * \param OutStatus Fetch status.
+ * \param CallBackp 
+ * \param serverp
+ * \param tsyncp
+ *
+ * \return Success status of operation.
+ */
 int
 afs_RemoteLookup(register struct VenusFid *afid, struct vrequest *areq,
                 char *name, struct VenusFid *nfid,
@@ -1618,11 +1786,11 @@ afs_RemoteLookup(register struct VenusFid *afid, struct vrequest *areq,
 {
     afs_int32 code;
     afs_uint32 start;
-    register struct conn *tc;
+    register struct afs_conn *tc;
     struct AFSFetchStatus OutDirStatus;
     XSTATS_DECLS;
     if (!name)
-       name = "";              /* XXX */
+       name = "";              /* XXX */    
     do {
        tc = afs_Conn(afid, areq, SHARED_LOCK);
        if (tc) {
@@ -1647,21 +1815,19 @@ afs_RemoteLookup(register struct VenusFid *afid, struct vrequest *areq,
 }
 
 
-/*
+/*!
  * afs_GetVCache
  *
- * Description:
- *     Given a file id and a vrequest structure, fetch the status
- *     information associated with the file.
+ * Given a file id and a vrequest structure, fetch the status
+ * information associated with the file.
  *
- * Parameters:
- *     afid : File ID.
- *     areq : Ptr to associated vrequest structure, specifying the
- *             user whose authentication tokens will be used.
- *      avc  : caller may already have a vcache for this file, which is
- *             already held.
+ * \param afid File ID.
+ * \param areq Ptr to associated vrequest structure, specifying the
+ *  user whose authentication tokens will be used.
+ * \param avc Caller may already have a vcache for this file, which is
+ *  already held.
  *
- * Environment:
+ * \note Environment:
  *     The cache entry is returned with an increased vrefCount field.
  *     The entry must be discarded by calling afs_PutVCache when you
  *     are through using the pointer to the cache entry.
@@ -1677,11 +1843,12 @@ afs_RemoteLookup(register struct VenusFid *afid, struct vrequest *areq,
  *     of a parent dir cache entry, given a file (to check its access
  *     control list).  It also allows renames to be handled easily by
  *     locking directories in a constant order.
- * NB.  NewVCache -> FlushVCache presently (4/10/95) drops the xvcache lock.
+ * 
+ * \note NB.  NewVCache -> FlushVCache presently (4/10/95) drops the xvcache lock.
+ *
+ * \note Might have a vcache structure already, which must
+ *  already be held by the caller 
  */
-   /* might have a vcache structure already, which must
-    * already be held by the caller */
-
 struct vcache *
 afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
              afs_int32 * cached, struct vcache *avc)
@@ -1703,7 +1870,7 @@ afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
 
     ObtainSharedLock(&afs_xvcache, 5);
 
-    tvc = afs_FindVCache(afid, &retry, DO_STATS | DO_VLRU);
+    tvc = afs_FindVCache(afid, &retry, DO_STATS | DO_VLRU | IS_SLOCK);
     if (tvc && retry) {
 #if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
        ReleaseSharedLock(&afs_xvcache);
@@ -1715,7 +1882,9 @@ afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
     if (tvc) {
        if (cached)
            *cached = 1;
-       if (tvc->states & CStatd) {
+       osi_Assert((tvc->f.states & CVInit) == 0);
+       /* If we are in readdir, return the vnode even if not statd */
+       if ((tvc->f.states & CStatd) || afs_InReadDir(tvc)) {
            ReleaseSharedLock(&afs_xvcache);
            return tvc;
        }
@@ -1727,6 +1896,12 @@ afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
        newvcache = 1;
 
        ConvertWToSLock(&afs_xvcache);
+       if (tvc == NULL)
+       {
+               ReleaseSharedLock(&afs_xvcache);
+               return NULL;
+       }
+
        afs_stats_cmperf.vcacheMisses++;
     }
 
@@ -1734,28 +1909,15 @@ afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
 
     ObtainWriteLock(&tvc->lock, 54);
 
-    if (tvc->states & CStatd) {
-#ifdef AFS_LINUX22_ENV
-       vcache2inode(tvc);
-#endif
-       ReleaseWriteLock(&tvc->lock);
-#ifdef AFS_DARWIN_ENV
-       osi_VM_Setup(tvc, 0);
-#endif
-       return tvc;
-    }
-#if defined(AFS_OSF_ENV)
-    if (afs_IsWired(tvc)) {
+    if (tvc->f.states & CStatd) {
        ReleaseWriteLock(&tvc->lock);
        return tvc;
     }
-#endif /* AFS_OSF_ENV */
-#ifdef AFS_OBSD_ENV
-    VOP_LOCK(AFSTOV(tvc), LK_EXCLUSIVE | LK_RETRY, curproc);
-    uvm_vnp_uncache(AFSTOV(tvc));
-    VOP_UNLOCK(AFSTOV(tvc), 0, curproc);
-#endif
-#ifdef AFS_FBSD_ENV
+#ifdef AFS_DARWIN80_ENV
+/* Darwin 8.0 only has bufs in nfs, so we shouldn't have to worry about them.
+   What about ubc? */
+#else
+#if defined(AFS_DARWIN_ENV) || defined(AFS_FBSD_ENV)
     /*
      * XXX - I really don't like this.  Should try to understand better.
      * It seems that sometimes, when we get called, we already hold the
@@ -1768,30 +1930,72 @@ afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
      * to vinvalbuf; otherwise, we leave it alone.
      */
     {
-       struct vnode *vp;
+       struct vnode *vp = AFSTOV(tvc);
        int iheldthelock;
 
-       vp = AFSTOV(tvc);
-#ifdef AFS_FBSD50_ENV
+#if defined(AFS_DARWIN_ENV)
+       iheldthelock = VOP_ISLOCKED(vp);
+       if (!iheldthelock)
+           vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, current_proc());
+       /* this is messy. we can call fsync which will try to reobtain this */
+       if (VTOAFS(vp) == tvc) 
+         ReleaseWriteLock(&tvc->lock);
+       if (UBCINFOEXISTS(vp)) {
+         vinvalbuf(vp, V_SAVE, &afs_osi_cred, current_proc(), PINOD, 0);
+       }
+       if (VTOAFS(vp) == tvc) 
+         ObtainWriteLock(&tvc->lock, 954);
+       if (!iheldthelock)
+           VOP_UNLOCK(vp, LK_EXCLUSIVE, current_proc());
+#elif defined(AFS_FBSD80_ENV)
+       iheldthelock = VOP_ISLOCKED(vp);
+       if (!iheldthelock) {
+           /* nosleep/sleep lock order reversal */
+           int glocked = ISAFS_GLOCK();
+           if (glocked)
+               AFS_GUNLOCK();
+           vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
+           if (glocked)
+               AFS_GLOCK();
+       }
+       vinvalbuf(vp, V_SAVE, PINOD, 0); /* changed late in 8.0-CURRENT */
+       if (!iheldthelock)
+           VOP_UNLOCK(vp, 0);
+#elif defined(AFS_FBSD60_ENV)
+       iheldthelock = VOP_ISLOCKED(vp, curthread);
+       if (!iheldthelock)
+           vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, curthread);
+       vinvalbuf(vp, V_SAVE, curthread, PINOD, 0);
+       if (!iheldthelock)
+           VOP_UNLOCK(vp, LK_EXCLUSIVE, curthread);
+#elif defined(AFS_FBSD50_ENV)
        iheldthelock = VOP_ISLOCKED(vp, curthread);
        if (!iheldthelock)
            vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, curthread);
        vinvalbuf(vp, V_SAVE, osi_curcred(), curthread, PINOD, 0);
        if (!iheldthelock)
            VOP_UNLOCK(vp, LK_EXCLUSIVE, curthread);
-#else
+#elif defined(AFS_FBSD40_ENV)
        iheldthelock = VOP_ISLOCKED(vp, curproc);
        if (!iheldthelock)
            vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, curproc);
        vinvalbuf(vp, V_SAVE, osi_curcred(), curproc, PINOD, 0);
        if (!iheldthelock)
            VOP_UNLOCK(vp, LK_EXCLUSIVE, curproc);
+#elif defined(AFS_OBSD_ENV)
+       iheldthelock = VOP_ISLOCKED(vp, curproc);
+       if (!iheldthelock)
+           VOP_LOCK(vp, LK_EXCLUSIVE | LK_RETRY, curproc);
+       uvm_vnp_uncache(vp);
+       if (!iheldthelock)
+           VOP_UNLOCK(vp, 0, curproc);
 #endif
     }
 #endif
+#endif
 
     ObtainWriteLock(&afs_xcbhash, 464);
-    tvc->states &= ~CUnique;
+    tvc->f.states &= ~CUnique;
     tvc->callback = 0;
     afs_DequeueCallback(tvc);
     ReleaseWriteLock(&afs_xcbhash);
@@ -1802,16 +2006,16 @@ afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
     if (tvp) {
        if ((tvp->states & VForeign)) {
            if (newvcache)
-               tvc->states |= CForeign;
+               tvc->f.states |= CForeign;
            if (newvcache && (tvp->rootVnode == afid->Fid.Vnode)
                && (tvp->rootUnique == afid->Fid.Unique)) {
                tvc->mvstat = 2;
            }
        }
        if (tvp->states & VRO)
-           tvc->states |= CRO;
+           tvc->f.states |= CRO;
        if (tvp->states & VBackup)
-           tvc->states |= CBackup;
+           tvc->f.states |= CBackup;
        /* now copy ".." entry back out of volume structure, if necessary */
        if (tvc->mvstat == 2 && tvp->dotdot.Fid.Volume != 0) {
            if (!tvc->mvid)
@@ -1829,19 +2033,43 @@ afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
 
        if (afs_DynrootNewVnode(tvc, &OutStatus)) {
            afs_ProcessFS(tvc, &OutStatus, areq);
-           tvc->states |= CStatd | CUnique;
+           tvc->f.states |= CStatd | CUnique;
+           tvc->f.parent.vnode  = OutStatus.ParentVnode;
+           tvc->f.parent.unique = OutStatus.ParentUnique;
            code = 0;
        } else {
-           code = afs_FetchStatus(tvc, afid, areq, &OutStatus);
+
+           if (AFS_IS_DISCONNECTED) {
+               /* Nothing to do otherwise...*/
+               code = ENETDOWN;
+               printf("Network is down in afs_GetCache");
+           } else
+               code = afs_FetchStatus(tvc, afid, areq, &OutStatus);
+
+           /* For the NFS translator's benefit, make sure
+            * non-directory vnodes always have their parent FID set
+            * correctly, even when created as a result of decoding an
+            * NFS filehandle.  It would be nice to also do this for
+            * directories, but we can't because the fileserver fills
+            * in the FID of the directory itself instead of that of
+            * its parent.
+            */
+            if (!code && OutStatus.FileType != Directory &&
+               !tvc->f.parent.vnode) {
+               tvc->f.parent.vnode  = OutStatus.ParentVnode;
+               tvc->f.parent.unique = OutStatus.ParentUnique;
+               /* XXX - SXW - It's conceivable we should mark ourselves
+                *             as dirty again here, incase we've been raced
+                *             out of the FetchStatus call.
+                */
+            }
        }
     }
 
     if (code) {
        ReleaseWriteLock(&tvc->lock);
 
-       ObtainReadLock(&afs_xvcache);
-       AFS_FAST_RELE(tvc);
-       ReleaseReadLock(&afs_xvcache);
+       afs_PutVCache(tvc);
        return NULL;
     }
 
@@ -1852,6 +2080,19 @@ afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq,
 
 
 
+/*!
+ * Lookup a vcache by fid. Look inside the cache first, if not
+ * there, lookup the file on the server, and then get it's fresh
+ * cache entry.
+ * 
+ * \param afid
+ * \param areq 
+ * \param cached Is element cached? If NULL, don't answer.
+ * \param adp
+ * \param aname
+ *
+ * \return The found element or NULL.
+ */
 struct vcache *
 afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
                 afs_int32 * cached, struct vcache *adp, char *aname)
@@ -1888,18 +2129,18 @@ afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
        }
        ObtainReadLock(&tvc->lock);
 
-       if (tvc->states & CStatd) {
+       if (tvc->f.states & CStatd) {
            if (cached) {
                *cached = 1;
            }
            ReleaseReadLock(&tvc->lock);
            return tvc;
        }
-       tvc->states &= ~CUnique;
+       tvc->f.states &= ~CUnique;
 
        ReleaseReadLock(&tvc->lock);
+       afs_PutVCache(tvc);
        ObtainReadLock(&afs_xvcache);
-       AFS_FAST_RELE(tvc);
     }
     /* if (tvc) */
     ReleaseReadLock(&afs_xvcache);
@@ -1908,16 +2149,21 @@ afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
     nfid = *afid;
     now = osi_Time();
     origCBs = afs_allCBs;      /* if anything changes, we don't have a cb */
-    code =
-       afs_RemoteLookup(&adp->fid, areq, aname, &nfid, &OutStatus, &CallBack,
-                        &serverp, &tsync);
+    
+    if (AFS_IS_DISCONNECTED) {
+       printf("Network is down in afs_LookupVcache\n");
+        code = ENETDOWN;
+    } else 
+        code =
+           afs_RemoteLookup(&adp->f.fid, areq, aname, &nfid, &OutStatus, 
+                            &CallBack, &serverp, &tsync);
 
 #if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
   loop2:
 #endif
 
     ObtainSharedLock(&afs_xvcache, 6);
-    tvc = afs_FindVCache(&nfid, &retry, DO_VLRU /* no xstats now */ );
+    tvc = afs_FindVCache(&nfid, &retry, DO_VLRU | IS_SLOCK/* no xstats now */ );
     if (tvc && retry) {
 #if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
        ReleaseSharedLock(&afs_xvcache);
@@ -1932,6 +2178,11 @@ afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
        tvc = afs_NewVCache(&nfid, serverp);
        newvcache = 1;
        ConvertWToSLock(&afs_xvcache);
+       if (!tvc)
+       {
+               ReleaseSharedLock(&afs_xvcache);
+               return NULL;
+       }
     }
 
     ReleaseSharedLock(&afs_xvcache);
@@ -1943,15 +2194,15 @@ afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
     if (tvp) {
        if ((tvp->states & VForeign)) {
            if (newvcache)
-               tvc->states |= CForeign;
+               tvc->f.states |= CForeign;
            if (newvcache && (tvp->rootVnode == afid->Fid.Vnode)
                && (tvp->rootUnique == afid->Fid.Unique))
                tvc->mvstat = 2;
        }
        if (tvp->states & VRO)
-           tvc->states |= CRO;
+           tvc->f.states |= CRO;
        if (tvp->states & VBackup)
-           tvc->states |= CBackup;
+           tvc->f.states |= CBackup;
        /* now copy ".." entry back out of volume structure, if necessary */
        if (tvc->mvstat == 2 && tvp->dotdot.Fid.Volume != 0) {
            if (!tvc->mvid)
@@ -1964,16 +2215,14 @@ afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
     if (code) {
        ObtainWriteLock(&afs_xcbhash, 465);
        afs_DequeueCallback(tvc);
-       tvc->states &= ~(CStatd | CUnique);
+       tvc->f.states &= ~(CStatd | CUnique);
        ReleaseWriteLock(&afs_xcbhash);
-       if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
+       if ((tvc->f.states & CForeign) || (tvc->f.fid.Fid.Vnode & 1))
            osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
        if (tvp)
            afs_PutVolume(tvp, READ_LOCK);
        ReleaseWriteLock(&tvc->lock);
-       ObtainReadLock(&afs_xvcache);
-       AFS_FAST_RELE(tvc);
-       ReleaseReadLock(&afs_xvcache);
+       afs_PutVCache(tvc);
        return NULL;
     }
 
@@ -1982,28 +2231,28 @@ afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
        if (CallBack.ExpirationTime) {
            tvc->callback = serverp;
            tvc->cbExpires = CallBack.ExpirationTime + now;
-           tvc->states |= CStatd | CUnique;
-           tvc->states &= ~CBulkFetching;
+           tvc->f.states |= CStatd | CUnique;
+           tvc->f.states &= ~CBulkFetching;
            afs_QueueCallback(tvc, CBHash(CallBack.ExpirationTime), tvp);
-       } else if (tvc->states & CRO) {
+       } else if (tvc->f.states & CRO) {
            /* adapt gives us an hour. */
            tvc->cbExpires = 3600 + osi_Time();
-            /*XXX*/ tvc->states |= CStatd | CUnique;
-           tvc->states &= ~CBulkFetching;
+            /*XXX*/ tvc->f.states |= CStatd | CUnique;
+           tvc->f.states &= ~CBulkFetching;
            afs_QueueCallback(tvc, CBHash(3600), tvp);
        } else {
            tvc->callback = NULL;
            afs_DequeueCallback(tvc);
-           tvc->states &= ~(CStatd | CUnique);
-           if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
+           tvc->f.states &= ~(CStatd | CUnique);
+           if ((tvc->f.states & CForeign) || (tvc->f.fid.Fid.Vnode & 1))
                osi_dnlc_purgedp(tvc);  /* if it (could be) a directory */
        }
     } else {
        afs_DequeueCallback(tvc);
-       tvc->states &= ~CStatd;
-       tvc->states &= ~CUnique;
+       tvc->f.states &= ~CStatd;
+       tvc->f.states &= ~CUnique;
        tvc->callback = NULL;
-       if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
+       if ((tvc->f.states & CForeign) || (tvc->f.fid.Fid.Vnode & 1))
            osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
     }
     ReleaseWriteLock(&afs_xcbhash);
@@ -2030,6 +2279,9 @@ afs_GetRootVCache(struct VenusFid *afid, struct vrequest *areq,
     struct AFSCallBack CallBack;
     struct AFSVolSync tsync;
     int origCBs = 0;
+#ifdef AFS_DARWIN80_ENV
+    vnode_t tvp;
+#endif
 
     start = osi_Time();
 
@@ -2058,51 +2310,50 @@ afs_GetRootVCache(struct VenusFid *afid, struct vrequest *areq,
        afid->Fid.Unique = tvolp->rootUnique;
     }
 
+ rootvc_loop:
     ObtainSharedLock(&afs_xvcache, 7);
     i = VCHash(afid);
     for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
-       if (!FidCmp(&(tvc->fid), afid)) {
-#ifdef AFS_OSF_ENV
-           /* Grab this vnode, possibly reactivating from the free list */
-           /* for the present (95.05.25) everything on the hash table is
-            * definitively NOT in the free list -- at least until afs_reclaim
-            * can be safely implemented */
-           int vg;
-           AFS_GUNLOCK();
-           vg = vget(AFSTOV(tvc));     /* this bumps ref count */
-           AFS_GLOCK();
-           if (vg)
-               continue;
-#endif /* AFS_OSF_ENV */
-#ifdef AFS_DARWIN14_ENV
-           /* It'd really suck if we allowed duplicate vcaches for the 
-            * same fid to happen. Wonder if this will work? */
-           struct vnode *vp = AFSTOV(tvc);
-           if (vp->v_flag & (VXLOCK | VORECLAIM | VTERMINATE)) {
-               printf("precluded FindVCache on %x (%d:%d:%d)\n",
-                      vp, tvc->fid.Fid.Volume, tvc->fid.Fid.Vnode,
-                      tvc->fid.Fid.Unique);
-               simple_lock(&vp->v_interlock);
-               SET(vp->v_flag, VTERMWANT);
-               simple_unlock(&vp->v_interlock);
-               (void)tsleep((caddr_t) & vp->v_ubcinfo, PINOD, "vget1", 0);
-               printf("VTERMWANT ended on %x\n", vp);
-               continue;
+       if (!FidCmp(&(tvc->f.fid), afid)) {
+            if (tvc->f.states & CVInit) {
+               ReleaseSharedLock(&afs_xvcache);
+               afs_osi_Sleep(&tvc->f.states);
+               goto rootvc_loop;
+            }
+#ifdef AFS_DARWIN80_ENV
+            if (tvc->f.states & CDeadVnode) {
+               ReleaseSharedLock(&afs_xvcache);
+               afs_osi_Sleep(&tvc->f.states);
+               goto rootvc_loop;
+            }
+           tvp = AFSTOV(tvc);
+           if (vnode_get(tvp))       /* this bumps ref count */
+               continue;
+           if (vnode_ref(tvp)) {
+               AFS_GUNLOCK();
+               /* AFSTOV(tvc) may be NULL */
+               vnode_put(tvp);
+               AFS_GLOCK();
+               continue;
            }
 #endif
            break;
        }
     }
 
-    if (!haveStatus && (!tvc || !(tvc->states & CStatd))) {
+    if (!haveStatus && (!tvc || !(tvc->f.states & CStatd))) {
        /* Mount point no longer stat'd or unknown. FID may have changed. */
-#ifdef AFS_OSF_ENV
-       if (tvc)
-           AFS_RELE(AFSTOV(tvc));
-#endif
-       tvc = NULL;
        getNewFid = 1;
        ReleaseSharedLock(&afs_xvcache);
+#ifdef AFS_DARWIN80_ENV
+        if (tvc) {
+            AFS_GUNLOCK();
+            vnode_put(AFSTOV(tvc));
+            vnode_rele(AFSTOV(tvc));
+            AFS_GLOCK();
+        }
+#endif
+        tvc = NULL;
        goto newmtpt;
     }
 
@@ -2110,15 +2361,20 @@ afs_GetRootVCache(struct VenusFid *afid, struct vrequest *areq,
        UpgradeSToWLock(&afs_xvcache, 23);
        /* no cache entry, better grab one */
        tvc = afs_NewVCache(afid, NULL);
+       if (!tvc)
+       {
+               ReleaseWriteLock(&afs_xvcache);
+               return NULL;
+       }
        newvcache = 1;
        afs_stats_cmperf.vcacheMisses++;
     } else {
        if (cached)
            *cached = 1;
        afs_stats_cmperf.vcacheHits++;
-#ifdef AFS_OSF_ENV
+#if    defined(AFS_DARWIN80_ENV)
        /* we already bumped the ref count in the for loop above */
-#else /* AFS_OSF_ENV */
+#else /* AFS_DARWIN80_ENV */
        osi_vnhold(tvc, 0);
 #endif
        UpgradeSToWLock(&afs_xvcache, 24);
@@ -2147,12 +2403,12 @@ afs_GetRootVCache(struct VenusFid *afid, struct vrequest *areq,
 
     ReleaseWriteLock(&afs_xvcache);
 
-    if (tvc->states & CStatd) {
+    if (tvc->f.states & CStatd) {
        return tvc;
     } else {
 
        ObtainReadLock(&tvc->lock);
-       tvc->states &= ~CUnique;
+       tvc->f.states &= ~CUnique;
        tvc->callback = NULL;   /* redundant, perhaps */
        ReleaseReadLock(&tvc->lock);
     }
@@ -2163,11 +2419,11 @@ afs_GetRootVCache(struct VenusFid *afid, struct vrequest *areq,
     afs_FreeAllAxs(&(tvc->Access));
 
     if (newvcache)
-       tvc->states |= CForeign;
+       tvc->f.states |= CForeign;
     if (tvolp->states & VRO)
-       tvc->states |= CRO;
+       tvc->f.states |= CRO;
     if (tvolp->states & VBackup)
-       tvc->states |= CBackup;
+       tvc->f.states |= CBackup;
     /* now copy ".." entry back out of volume structure, if necessary */
     if (newvcache && (tvolp->rootVnode == afid->Fid.Vnode)
        && (tvolp->rootUnique == afid->Fid.Unique)) {
@@ -2198,38 +2454,36 @@ afs_GetRootVCache(struct VenusFid *afid, struct vrequest *areq,
        ObtainWriteLock(&afs_xcbhash, 467);
        afs_DequeueCallback(tvc);
        tvc->callback = NULL;
-       tvc->states &= ~(CStatd | CUnique);
+       tvc->f.states &= ~(CStatd | CUnique);
        ReleaseWriteLock(&afs_xcbhash);
-       if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
+       if ((tvc->f.states & CForeign) || (tvc->f.fid.Fid.Vnode & 1))
            osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
        ReleaseWriteLock(&tvc->lock);
-       ObtainReadLock(&afs_xvcache);
-       AFS_FAST_RELE(tvc);
-       ReleaseReadLock(&afs_xvcache);
+       afs_PutVCache(tvc);
        return NULL;
     }
 
     ObtainWriteLock(&afs_xcbhash, 468);
     if (origCBs == afs_allCBs) {
-       tvc->states |= CTruth;
+       tvc->f.states |= CTruth;
        tvc->callback = serverp;
        if (CallBack.ExpirationTime != 0) {
            tvc->cbExpires = CallBack.ExpirationTime + start;
-           tvc->states |= CStatd;
-           tvc->states &= ~CBulkFetching;
+           tvc->f.states |= CStatd;
+           tvc->f.states &= ~CBulkFetching;
            afs_QueueCallback(tvc, CBHash(CallBack.ExpirationTime), tvolp);
-       } else if (tvc->states & CRO) {
+       } else if (tvc->f.states & CRO) {
            /* adapt gives us an hour. */
            tvc->cbExpires = 3600 + osi_Time();
-            /*XXX*/ tvc->states |= CStatd;
-           tvc->states &= ~CBulkFetching;
+            /*XXX*/ tvc->f.states |= CStatd;
+           tvc->f.states &= ~CBulkFetching;
            afs_QueueCallback(tvc, CBHash(3600), tvolp);
        }
     } else {
        afs_DequeueCallback(tvc);
        tvc->callback = NULL;
-       tvc->states &= ~(CStatd | CUnique);
-       if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
+       tvc->f.states &= ~(CStatd | CUnique);
+       if ((tvc->f.states & CForeign) || (tvc->f.fid.Fid.Vnode & 1))
            osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
     }
     ReleaseWriteLock(&afs_xcbhash);
@@ -2240,9 +2494,69 @@ afs_GetRootVCache(struct VenusFid *afid, struct vrequest *areq,
 }
 
 
+/*!
+ * Update callback status and (sometimes) attributes of a vnode.
+ * Called after doing a fetch status RPC. Whilst disconnected, attributes
+ * shouldn't be written to the vcache here.
+ *
+ * \param avc
+ * \param afid
+ * \param areq
+ * \param Outsp Server status after rpc call.
+ * \param acb Callback for this vnode.
+ *
+ * \note The vcache must be write locked.
+ */
+void
+afs_UpdateStatus(struct vcache *avc,
+                       struct VenusFid *afid,
+                       struct vrequest *areq,
+                       struct AFSFetchStatus *Outsp,
+                       struct AFSCallBack *acb,
+                       afs_uint32 start)
+{
+    struct volume *volp;
+
+    if (!AFS_IN_SYNC)
+       /* Dont write status in vcache if resyncing after a disconnection. */
+       afs_ProcessFS(avc, Outsp, areq);
 
-/*
- * must be called with avc write-locked
+    volp = afs_GetVolume(afid, areq, READ_LOCK);
+    ObtainWriteLock(&afs_xcbhash, 469);
+    avc->f.states |= CTruth;
+    if (avc->callback /* check for race */ ) {
+       if (acb->ExpirationTime != 0) {
+           avc->cbExpires = acb->ExpirationTime + start;
+           avc->f.states |= CStatd;
+           avc->f.states &= ~CBulkFetching;
+           afs_QueueCallback(avc, CBHash(acb->ExpirationTime), volp);
+       } else if (avc->f.states & CRO) {
+           /* ordinary callback on a read-only volume -- AFS 3.2 style */
+           avc->cbExpires = 3600 + start;
+           avc->f.states |= CStatd;
+           avc->f.states &= ~CBulkFetching;
+           afs_QueueCallback(avc, CBHash(3600), volp);
+       } else {
+           afs_DequeueCallback(avc);
+           avc->callback = NULL;
+           avc->f.states &= ~(CStatd | CUnique);
+           if ((avc->f.states & CForeign) || (avc->f.fid.Fid.Vnode & 1))
+               osi_dnlc_purgedp(avc);  /* if it (could be) a directory */
+       }
+    } else {
+       afs_DequeueCallback(avc);
+       avc->callback = NULL;
+       avc->f.states &= ~(CStatd | CUnique);
+       if ((avc->f.states & CForeign) || (avc->f.fid.Fid.Vnode & 1))
+           osi_dnlc_purgedp(avc);      /* if it (could be) a directory */
+    }
+    ReleaseWriteLock(&afs_xcbhash);
+    if (volp)
+       afs_PutVolume(volp, READ_LOCK);
+}
+
+/*!
+ * Must be called with avc write-locked
  * don't absolutely have to invalidate the hint unless the dv has
  * changed, but be sure to get it right else there will be consistency bugs.
  */
@@ -2252,15 +2566,13 @@ afs_FetchStatus(struct vcache * avc, struct VenusFid * afid,
 {
     int code;
     afs_uint32 start = 0;
-    register struct conn *tc;
+    register struct afs_conn *tc;
     struct AFSCallBack CallBack;
     struct AFSVolSync tsync;
-    struct volume *volp;
     XSTATS_DECLS;
     do {
        tc = afs_Conn(afid, areq, SHARED_LOCK);
-       avc->quick.stamp = 0;
-       avc->h1.dchint = NULL;  /* invalidate hints */
+       avc->dchint = NULL;     /* invalidate hints */
        if (tc) {
            avc->callback = tc->srvr->server;
            start = osi_Time();
@@ -2280,38 +2592,7 @@ afs_FetchStatus(struct vcache * avc, struct VenusFid * afid,
              SHARED_LOCK, NULL));
 
     if (!code) {
-       afs_ProcessFS(avc, Outsp, areq);
-       volp = afs_GetVolume(afid, areq, READ_LOCK);
-       ObtainWriteLock(&afs_xcbhash, 469);
-       avc->states |= CTruth;
-       if (avc->callback /* check for race */ ) {
-           if (CallBack.ExpirationTime != 0) {
-               avc->cbExpires = CallBack.ExpirationTime + start;
-               avc->states |= CStatd;
-               avc->states &= ~CBulkFetching;
-               afs_QueueCallback(avc, CBHash(CallBack.ExpirationTime), volp);
-           } else if (avc->states & CRO) {     /* ordinary callback on a read-only volume -- AFS 3.2 style */
-               avc->cbExpires = 3600 + start;
-               avc->states |= CStatd;
-               avc->states &= ~CBulkFetching;
-               afs_QueueCallback(avc, CBHash(3600), volp);
-           } else {
-               afs_DequeueCallback(avc);
-               avc->callback = NULL;
-               avc->states &= ~(CStatd | CUnique);
-               if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
-                   osi_dnlc_purgedp(avc);      /* if it (could be) a directory */
-           }
-       } else {
-           afs_DequeueCallback(avc);
-           avc->callback = NULL;
-           avc->states &= ~(CStatd | CUnique);
-           if ((avc->states & CForeign) || (avc->fid.Fid.Vnode & 1))
-               osi_dnlc_purgedp(avc);  /* if it (could be) a directory */
-       }
-       ReleaseWriteLock(&afs_xcbhash);
-       if (volp)
-           afs_PutVolume(volp, READ_LOCK);
+       afs_UpdateStatus(avc, afid, areq, Outsp, &CallBack, start);
     } else {
        /* used to undo the local callback, but that's too extreme.
         * There are plenty of good reasons that fetchstatus might return
@@ -2350,7 +2631,7 @@ afs_FetchStatus(struct vcache * avc, struct VenusFid * afid,
 void
 afs_StuffVcache(register struct VenusFid *afid,
                struct AFSFetchStatus *OutStatus,
-               struct AFSCallBack *CallBack, register struct conn *tc,
+               struct AFSCallBack *CallBack, register struct afs_conn *tc,
                struct vrequest *areq)
 {
     register afs_int32 code, i, newvcache = 0;
@@ -2368,7 +2649,7 @@ afs_StuffVcache(register struct VenusFid *afid,
   loop:
     ObtainSharedLock(&afs_xvcache, 8);
 
-    tvc = afs_FindVCache(afid, &retry, DO_VLRU /* no stats */ );
+    tvc = afs_FindVCache(afid, &retry, DO_VLRU| IS_SLOCK /* no stats */ );
     if (tvc && retry) {
 #if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
        ReleaseSharedLock(&afs_xvcache);
@@ -2383,13 +2664,18 @@ afs_StuffVcache(register struct VenusFid *afid,
        tvc = afs_NewVCache(afid, NULL);
        newvcache = 1;
        ConvertWToSLock(&afs_xvcache);
+       if (!tvc)
+       {
+               ReleaseSharedLock(&afs_xvcache);
+               return NULL;
+       }
     }
 
     ReleaseSharedLock(&afs_xvcache);
     ObtainWriteLock(&tvc->lock, 58);
 
-    tvc->states &= ~CStatd;
-    if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
+    tvc->f.states &= ~CStatd;
+    if ((tvc->f.states & CForeign) || (tvc->f.fid.Fid.Vnode & 1))
        osi_dnlc_purgedp(tvc);  /* if it (could be) a directory */
 
     /* Is it always appropriate to throw away all the access rights? */
@@ -2399,11 +2685,11 @@ afs_StuffVcache(register struct VenusFid *afid,
     tvp = afs_GetVolume(afid, areq, READ_LOCK);
     if (tvp) {
        if (newvcache && (tvp->states & VForeign))
-           tvc->states |= CForeign;
+           tvc->f.states |= CForeign;
        if (tvp->states & VRO)
-           tvc->states |= CRO;
+           tvc->f.states |= CRO;
        if (tvp->states & VBackup)
-           tvc->states |= CBackup;
+           tvc->f.states |= CBackup;
        /*
         * Now, copy ".." entry back out of volume structure, if
         * necessary
@@ -2432,20 +2718,20 @@ afs_StuffVcache(register struct VenusFid *afid,
     ObtainWriteLock(&afs_xcbhash, 470);
     if (CallBack->ExpirationTime != 0) {
        tvc->cbExpires = CallBack->ExpirationTime + osi_Time() - 1;
-       tvc->states |= CStatd;
-       tvc->states &= ~CBulkFetching;
+       tvc->f.states |= CStatd;
+       tvc->f.states &= ~CBulkFetching;
        afs_QueueCallback(tvc, CBHash(CallBack->ExpirationTime), tvp);
-    } else if (tvc->states & CRO) {
+    } else if (tvc->f.states & CRO) {
        /* old-fashioned AFS 3.2 style */
        tvc->cbExpires = 3600 + osi_Time();
-        /*XXX*/ tvc->states |= CStatd;
-       tvc->states &= ~CBulkFetching;
+        /*XXX*/ tvc->f.states |= CStatd;
+       tvc->f.states &= ~CBulkFetching;
        afs_QueueCallback(tvc, CBHash(3600), tvp);
     } else {
        afs_DequeueCallback(tvc);
        tvc->callback = NULL;
-       tvc->states &= ~(CStatd | CUnique);
-       if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1))
+       tvc->f.states &= ~(CStatd | CUnique);
+       if ((tvc->f.states & CForeign) || (tvc->f.fid.Fid.Vnode & 1))
            osi_dnlc_purgedp(tvc);      /* if it (could be) a directory */
     }
     ReleaseWriteLock(&afs_xcbhash);
@@ -2469,47 +2755,97 @@ afs_StuffVcache(register struct VenusFid *afid,
 }                              /*afs_StuffVcache */
 #endif
 
-/*
- * afs_PutVCache
+/*!
+ * Decrements the reference count on a cache entry.
  *
- * Description:
- *     Decrements the reference count on a cache entry.
- *
- * Parameters:
- *     avc : Pointer to the cache entry to decrement.
+ * \param avc Pointer to the cache entry to decrement.
  *
- * Environment:
- *     Nothing interesting.
+ * \note Environment: Nothing interesting.
  */
 void
 afs_PutVCache(register struct vcache *avc)
 {
     AFS_STATCNT(afs_PutVCache);
+#ifdef AFS_DARWIN80_ENV
+    vnode_put(AFSTOV(avc));
+    AFS_FAST_RELE(avc);
+#else
     /*
      * Can we use a read lock here?
      */
     ObtainReadLock(&afs_xvcache);
     AFS_FAST_RELE(avc);
     ReleaseReadLock(&afs_xvcache);
+#endif
 }                              /*afs_PutVCache */
 
-/*
- * afs_FindVCache
+
+/*!
+ * Reset a vcache entry, so local contents are ignored, and the
+ * server will be reconsulted next time the vcache is used
+ * 
+ * \param avc Pointer to the cache entry to reset
+ * \param acred 
  *
- * Description:
- *     Find a vcache entry given a fid.
+ * \note avc must be write locked on entry
+ */
+void
+afs_ResetVCache(struct vcache *avc, afs_ucred_t *acred) {
+    ObtainWriteLock(&afs_xcbhash, 456);
+    afs_DequeueCallback(avc);
+    avc->f.states &= ~(CStatd | CDirty);    /* next reference will re-stat */
+    ReleaseWriteLock(&afs_xcbhash);
+    /* now find the disk cache entries */
+    afs_TryToSmush(avc, acred, 1);
+    osi_dnlc_purgedp(avc);
+    if (avc->linkData && !(avc->f.states & CCore)) {
+       afs_osi_Free(avc->linkData, strlen(avc->linkData) + 1);
+       avc->linkData = NULL;
+    }
+}
+
+/*!
+ * Sleepa when searching for a vcache. Releases all the pending locks,
+ * sleeps then obtains the previously released locks.
  *
- * Parameters:
- *     afid : Pointer to the fid whose cache entry we desire.
- *      retry: (SGI-specific) tell the caller to drop the lock on xvcache,
- *             unlock the vnode, and try again.
- *      flags: bit 1 to specify whether to compute hit statistics.  Not
- *             set if FindVCache is called as part of internal bookkeeping.
+ * \param vcache Enter sleep state.
+ * \param flag Determines what locks to use.
  *
- * Environment:
- *     Must be called with the afs_xvcache lock at least held at
- *     the read level.  In order to do the VLRU adjustment, the xvcache lock
- *      must be shared-- we upgrade it here.
+ * \return 
+ */
+static void findvc_sleep(struct vcache *avc, int flag) {
+    if (flag & IS_SLOCK) {
+           ReleaseSharedLock(&afs_xvcache);
+    } else {
+       if (flag & IS_WLOCK) {
+           ReleaseWriteLock(&afs_xvcache);
+       } else {
+           ReleaseReadLock(&afs_xvcache);
+       }
+    }
+    afs_osi_Sleep(&avc->f.states);
+    if (flag & IS_SLOCK) {
+           ObtainSharedLock(&afs_xvcache, 341);
+    } else {
+       if (flag & IS_WLOCK) {
+           ObtainWriteLock(&afs_xvcache, 343);
+       } else {
+           ObtainReadLock(&afs_xvcache);
+       }
+    }
+}
+/*!
+ * Find a vcache entry given a fid.
+ *
+ * \param afid Pointer to the fid whose cache entry we desire.
+ * \param retry (SGI-specific) tell the caller to drop the lock on xvcache,
+ *  unlock the vnode, and try again.
+ * \param flag Bit 1 to specify whether to compute hit statistics.  Not
+ *  set if FindVCache is called as part of internal bookkeeping.
+ *
+ * \note Environment: Must be called with the afs_xvcache lock at least held at
+ * the read level.  In order to do the VLRU adjustment, the xvcache lock
+ * must be shared-- we upgrade it here.
  */
 
 struct vcache *
@@ -2518,21 +2854,36 @@ afs_FindVCache(struct VenusFid *afid, afs_int32 * retry, afs_int32 flag)
 
     register struct vcache *tvc;
     afs_int32 i;
+#ifdef AFS_DARWIN80_ENV
+    vnode_t tvp;
+#endif
 
     AFS_STATCNT(afs_FindVCache);
 
+ findloop:
     i = VCHash(afid);
     for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
        if (FidMatches(afid, tvc)) {
-#ifdef  AFS_OSF_ENV
-           /* Grab this vnode, possibly reactivating from the free list */
-           int vg;
-           AFS_GUNLOCK();
-           vg = vget(AFSTOV(tvc));
-           AFS_GLOCK();
-           if (vg)
+            if (tvc->f.states & CVInit) {
+               findvc_sleep(tvc, flag);
+               goto findloop;
+            }
+#ifdef  AFS_DARWIN80_ENV
+            if (tvc->f.states & CDeadVnode) {
+                findvc_sleep(tvc, flag);
+               goto findloop;
+            }
+           tvp = AFSTOV(tvc);
+           if (vnode_get(tvp))
+               continue;
+           if (vnode_ref(tvp)) {
+               AFS_GUNLOCK();
+               /* AFSTOV(tvc) may be NULL */
+               vnode_put(tvp);
+               AFS_GLOCK();
                continue;
-#endif /* AFS_OSF_ENV */
+           }
+#endif
            break;
        }
     }
@@ -2541,11 +2892,21 @@ afs_FindVCache(struct VenusFid *afid, afs_int32 * retry, afs_int32 flag)
     if (tvc) {
        if (retry)
            *retry = 0;
-#if !defined(AFS_OSF_ENV)
+#if !defined(AFS_DARWIN80_ENV)
        osi_vnhold(tvc, retry); /* already held, above */
        if (retry && *retry)
            return 0;
 #endif
+#if defined(AFS_DARWIN_ENV) && !defined(AFS_DARWIN80_ENV)
+       tvc->f.states |= CUBCinit;
+       AFS_GUNLOCK();
+       if (UBCINFOMISSING(AFSTOV(tvc)) ||
+           UBCINFORECLAIMED(AFSTOV(tvc))) {
+         ubc_info_init(AFSTOV(tvc));
+       }
+       AFS_GLOCK();
+       tvc->f.states &= ~CUBCinit;
+#endif
        /*
         * only move to front of vlru if we have proper vcache locking)
         */
@@ -2586,39 +2947,25 @@ afs_FindVCache(struct VenusFid *afid, afs_int32 * retry, afs_int32 flag)
        else
            afs_stats_cmperf.vremoteAccesses++;
     }
-#ifdef AFS_LINUX22_ENV
-    if (tvc && (tvc->states & CStatd))
-       vcache2inode(tvc);      /* mainly to reset i_nlink */
-#endif
-#ifdef AFS_DARWIN_ENV
-    if (tvc)
-       osi_VM_Setup(tvc, 0);
-#endif
     return tvc;
 }                              /*afs_FindVCache */
 
-/*
- * afs_NFSFindVCache
- *
- * Description:
- *     Find a vcache entry given a fid. Does a wildcard match on what we
- *     have for the fid. If more than one entry, don't return anything.
+/*!
+ * Find a vcache entry given a fid. Does a wildcard match on what we
+ * have for the fid. If more than one entry, don't return anything.
  *
- * Parameters:
- *     avcp : Fill in pointer if we found one and only one.
- *     afid : Pointer to the fid whose cache entry we desire.
- *      retry: (SGI-specific) tell the caller to drop the lock on xvcache,
+ * \param avcp Fill in pointer if we found one and only one.
+ * \param afid Pointer to the fid whose cache entry we desire.
+ * \param retry (SGI-specific) tell the caller to drop the lock on xvcache,
  *             unlock the vnode, and try again.
- *      flags: bit 1 to specify whether to compute hit statistics.  Not
+ * \param flags bit 1 to specify whether to compute hit statistics.  Not
  *             set if FindVCache is called as part of internal bookkeeping.
  *
- * Environment:
- *     Must be called with the afs_xvcache lock at least held at
- *     the read level.  In order to do the VLRU adjustment, the xvcache lock
- *      must be shared-- we upgrade it here.
+ * \note Environment: Must be called with the afs_xvcache lock at least held at
+ *  the read level.  In order to do the VLRU adjustment, the xvcache lock
+ *  must be shared-- we upgrade it here.
  *
- * Return value:
- *     number of matches found.
+ * \return Number of matches found.
  */
 
 int afs_duplicate_nfs_fids = 0;
@@ -2630,43 +2977,58 @@ afs_NFSFindVCache(struct vcache **avcp, struct VenusFid *afid)
     afs_int32 i;
     afs_int32 count = 0;
     struct vcache *found_tvc = NULL;
+#ifdef AFS_DARWIN80_ENV
+    vnode_t tvp;
+#endif
 
     AFS_STATCNT(afs_FindVCache);
 
-#if defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
   loop:
-#endif
 
     ObtainSharedLock(&afs_xvcache, 331);
 
     i = VCHash(afid);
     for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
        /* Match only on what we have.... */
-       if (((tvc->fid.Fid.Vnode & 0xffff) == afid->Fid.Vnode)
-           && (tvc->fid.Fid.Volume == afid->Fid.Volume)
-           && ((tvc->fid.Fid.Unique & 0xffffff) == afid->Fid.Unique)
-           && (tvc->fid.Cell == afid->Cell)) {
-#ifdef  AFS_OSF_ENV
-           /* Grab this vnode, possibly reactivating from the free list */
-           int vg;
-           AFS_GUNLOCK();
-           vg = vget(AFSTOV(tvc));
-           AFS_GLOCK();
-           if (vg) {
+       if (((tvc->f.fid.Fid.Vnode & 0xffff) == afid->Fid.Vnode)
+           && (tvc->f.fid.Fid.Volume == afid->Fid.Volume)
+           && ((tvc->f.fid.Fid.Unique & 0xffffff) == afid->Fid.Unique)
+           && (tvc->f.fid.Cell == afid->Cell)) {
+           if (tvc->f.states & CVInit) {
+               ReleaseSharedLock(&afs_xvcache);
+               afs_osi_Sleep(&tvc->f.states);
+               goto loop;
+            }
+#ifdef  AFS_DARWIN80_ENV
+            if (tvc->f.states & CDeadVnode) {
+               ReleaseSharedLock(&afs_xvcache);
+               afs_osi_Sleep(&tvc->f.states);
+               goto loop;
+            }
+           tvp = AFSTOV(tvc);
+           if (vnode_get(tvp)) {
+               /* This vnode no longer exists. */
+               continue;
+           }
+           if (vnode_ref(tvp)) {
                /* This vnode no longer exists. */
+               AFS_GUNLOCK();
+               /* AFSTOV(tvc) may be NULL */
+               vnode_put(tvp);
+               AFS_GLOCK();
                continue;
            }
-#endif /* AFS_OSF_ENV */
+#endif /* AFS_DARWIN80_ENV */
            count++;
            if (found_tvc) {
                /* Duplicates */
-#ifdef AFS_OSF_ENV
-               /* Drop our reference counts. */
-               vrele(AFSTOV(tvc));
-               vrele(AFSTOV(found_tvc));
-#endif
                afs_duplicate_nfs_fids++;
                ReleaseSharedLock(&afs_xvcache);
+#ifdef AFS_DARWIN80_ENV
+                /* Drop our reference counts. */
+                vnode_put(AFSTOV(tvc));
+                vnode_put(AFSTOV(found_tvc));
+#endif
                return count;
            }
            found_tvc = tvc;
@@ -2687,10 +3049,8 @@ afs_NFSFindVCache(struct vcache **avcp, struct VenusFid *afid)
            goto loop;
        }
 #else
-#if !defined(AFS_OSF_ENV)
        osi_vnhold(tvc, (int *)0);      /* already held, above */
 #endif
-#endif
        /*
         * We obtained the xvcache lock above.
         */
@@ -2738,49 +3098,36 @@ afs_NFSFindVCache(struct vcache **avcp, struct VenusFid *afid)
 
 
 
-/*
- * afs_vcacheInit
- *
+/*!
  * Initialize vcache related variables
+ *
+ * \param astatSize
  */
 void
 afs_vcacheInit(int astatSize)
 {
+#if !defined(AFS_LINUX22_ENV)
     register struct vcache *tvp;
+#endif
     int i;
-#if    defined(AFS_OSF_ENV)
+#if defined(AFS_LINUX22_ENV)
     if (!afs_maxvcount) {
-#if    defined(AFS_OSF30_ENV)
-       afs_maxvcount = max_vnodes / 2; /* limit ourselves to half the total */
-#else
-       afs_maxvcount = nvnode / 2;     /* limit ourselves to half the total */
-#endif
+       afs_maxvcount = astatSize;      /* no particular limit on linux? */
        if (astatSize < afs_maxvcount) {
            afs_maxvcount = astatSize;
        }
     }
-#else /* AFS_OSF_ENV */
+#else /* AFS_LINUX22_ENV */
     freeVCList = NULL;
 #endif
 
-    RWLOCK_INIT(&afs_xvcache, "afs_xvcache");
+    AFS_RWLOCK_INIT(&afs_xvcache, "afs_xvcache");
     LOCK_INIT(&afs_xvcb, "afs_xvcb");
 
-#if    !defined(AFS_OSF_ENV)
-#ifdef AFS_LINUX26_ENV
-    printf("old style would have needed %d contiguous bytes\n", astatSize *
-          sizeof(struct vcache));
-    Initial_freeVCList = freeVCList = tvp = (struct vcache *)
-       afs_osi_Alloc(sizeof(struct vcache));
-    for (i = 0; i < astatSize; i++) {
-       tvp->nextfree = (struct vcache *) afs_osi_Alloc(sizeof(struct vcache));
-       tvp = tvp->nextfree;
-    }
-    tvp->nextfree = NULL;
-#else
+#if !defined(AFS_LINUX22_ENV)
     /* Allocate and thread the struct vcache entries */
     tvp = (struct vcache *)afs_osi_Alloc(astatSize * sizeof(struct vcache));
-    memset((char *)tvp, 0, sizeof(struct vcache) * astatSize);
+    memset(tvp, 0, sizeof(struct vcache) * astatSize);
 
     Initial_freeVCList = tvp;
     freeVCList = &(tvp[0]);
@@ -2788,10 +3135,9 @@ afs_vcacheInit(int astatSize)
        tvp[i].nextfree = &(tvp[i + 1]);
     }
     tvp[astatSize - 1].nextfree = NULL;
-#ifdef  KERNEL_HAVE_PIN
+# ifdef  KERNEL_HAVE_PIN
     pin((char *)tvp, astatSize * sizeof(struct vcache));       /* XXX */
-#endif
-#endif
+# endif
 #endif
 
 #if defined(AFS_SGI_ENV)
@@ -2811,29 +3157,28 @@ afs_vcacheInit(int astatSize)
 #endif /* AFS_SGI62_ENV */
     }
 #endif
-
     QInit(&VLRU);
-
-
+    for(i = 0; i < VCSIZE; ++i)
+       QInit(&afs_vhashTV[i]);
 }
 
-/*
- * shutdown_vcache
- *
+/*!
+ * Shutdown vcache.
  */
 void
 shutdown_vcache(void)
 {
     int i;
-    struct afs_cbr *tsp, *nsp;
+    struct afs_cbr *tsp;
     /*
-     * XXX We may potentially miss some of the vcaches because if when there're no
-     * free vcache entries and all the vcache entries are active ones then we allocate
-     * an additional one - admittedly we almost never had that occur.
+     * XXX We may potentially miss some of the vcaches because if when
+     * there are no free vcache entries and all the vcache entries are active
+     * ones then we allocate an additional one - admittedly we almost never
+     * had that occur.
      */
 
     {
-       register struct afs_q *tq, *uq;
+       register struct afs_q *tq, *uq = NULL;
        register struct vcache *tvc;
        for (tq = VLRU.prev; tq != &VLRU; tq = uq) {
            tvc = QTOV(tq);
@@ -2868,7 +3213,7 @@ shutdown_vcache(void)
                    vms_delete(tvc->segid);
                    AFS_GLOCK();
                    tvc->segid = tvc->vmh = NULL;
-                   if (VREFCOUNT(tvc))
+                   if (VREFCOUNT_GT(tvc,0))
                        osi_Panic("flushVcache: vm race");
                }
                if (tvc->credp) {
@@ -2888,7 +3233,8 @@ shutdown_vcache(void)
                    tvc->linkData = 0;
                }
 
-               afs_FreeAllAxs(&(tvc->Access));
+               if (tvc->Access)
+                   afs_FreeAllAxs(&(tvc->Access));
            }
            afs_vhashT[i] = 0;
        }
@@ -2896,36 +3242,72 @@ shutdown_vcache(void)
     /*
      * Free any leftover callback queue
      */
-    for (tsp = afs_cbrSpace; tsp; tsp = nsp) {
-       nsp = tsp->next;
+    for (i = 0; i < afs_stats_cmperf.CallBackAlloced; i++) {
+       tsp = afs_cbrHeads[i];
+       afs_cbrHeads[i] = 0;
        afs_osi_Free((char *)tsp, AFS_NCBRS * sizeof(struct afs_cbr));
     }
     afs_cbrSpace = 0;
 
-#ifdef AFS_LINUX26_ENV
-    {
-       struct vcache *tvp = Initial_freeVCList;
-       while (tvp) {
-           struct vcache *next = tvp->nextfree;
-           
-           afs_osi_Free(tvp, sizeof(struct vcache));
-           tvp = next;
-       }
-    }
-#else
-#ifdef  KERNEL_HAVE_PIN
-    unpin(Initial_freeVCList, afs_cacheStats * sizeof(struct vcache));
-#endif
-#if    !defined(AFS_OSF_ENV)
+#if !defined(AFS_LINUX22_ENV)
     afs_osi_Free(Initial_freeVCList, afs_cacheStats * sizeof(struct vcache));
-#endif
-#endif
 
-#if    !defined(AFS_OSF_ENV)
+# ifdef  KERNEL_HAVE_PIN
+    unpin(Initial_freeVCList, afs_cacheStats * sizeof(struct vcache));
+# endif
+
     freeVCList = Initial_freeVCList = 0;
 #endif
-    RWLOCK_INIT(&afs_xvcache, "afs_xvcache");
+
+    AFS_RWLOCK_INIT(&afs_xvcache, "afs_xvcache");
     LOCK_INIT(&afs_xvcb, "afs_xvcb");
     QInit(&VLRU);
+    for(i = 0; i < VCSIZE; ++i)
+       QInit(&afs_vhashTV[i]);
+}
+
+void
+afs_DisconGiveUpCallbacks(void) {
+    int i;
+    struct vcache *tvc;
+    int nq=0;
+            
+    ObtainWriteLock(&afs_xvcache, 1002); /* XXX - should be a unique number */
+    
+    /* Somehow, walk the set of vcaches, with each one coming out as tvc */
+    for (i = 0; i < VCSIZE; i++) {
+        for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
+            if (afs_QueueVCB(tvc)) {
+                tvc->callback = NULL;
+                nq++;
+            }
+        }
+    }
+
+    ReleaseWriteLock(&afs_xvcache);
+
+    afs_FlushVCBs(1);
+}
+
+/*!
+ *
+ * Clear the Statd flag from all vcaches
+ *
+ * This function removes the Statd flag from all vcaches. It's used by 
+ * disconnected mode to tidy up during reconnection
+ *
+ */
+void
+afs_ClearAllStatdFlag(void) {
+    int i;
+    struct vcache *tvc;
+   
+    ObtainWriteLock(&afs_xvcache, 715);
 
+    for (i = 0; i < VCSIZE; i++) {
+       for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
+           tvc->f.states &= ~(CStatd|CUnique);
+       }
+    }
+    ReleaseWriteLock(&afs_xvcache);
 }