linux-dcache-flushing-experimental-20020819
[openafs.git] / src / afs / afs_vcache.c
index 923dc6e..9eb4ff4 100644 (file)
@@ -49,38 +49,12 @@ RCSID("$Header$");
 #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 */
-#if    defined(AFS_OSF30_ENV)
-extern int max_vnodes;                 /* number of total system vnodes */
-#else
-extern int nvnode;                     /* number of total system vnodes */
-#endif 
-#ifndef        AFS_OSF30_ENV
-extern int numvnodes;                  /* number vnodes in use now */ 
-#endif
 #endif /* AFS_OSF_ENV */
+
 #ifdef AFS_SGI_ENV
 int afsvnumbers = 0;
 #endif
 
-/* Imported variables */
-extern struct server *afs_servers[NSERVERS];
-extern afs_rwlock_t afs_xserver;
-extern afs_rwlock_t afs_xcbhash;
-extern struct vcache *afs_globalVp;
-#ifdef AFS_OSF_ENV
-extern struct mount *afs_globalVFS;
-extern struct vnodeops Afs_vnodeops;
-#elif defined(AFS_DARWIN_ENV)
-extern struct mount *afs_globalVFS;
-#else
-extern struct vfs *afs_globalVFS;
-#endif /* AFS_OSF_ENV */
-#if    defined(AFS_DUX40_ENV)
-extern struct vfs_ubcops afs_ubcops;
-#endif
-#ifdef AFS_SGI62_ENV
-extern struct vnodeops Afs_vnodeops;
-#endif
 #ifdef AFS_SGI64_ENV
 char *makesname();
 #endif /* AFS_SGI64_ENV */
@@ -124,7 +98,7 @@ int afs_FlushVCache(struct vcache *avc, int *slept)
 { /*afs_FlushVCache*/
 
     register afs_int32 i, code;
-    register struct vcache **uvc, *wvc, *tvc;
+    register struct vcache **uvc, *wvc;
 
     *slept = 0;
     AFS_STATCNT(afs_FlushVCache);
@@ -132,7 +106,7 @@ int afs_FlushVCache(struct vcache *avc, int *slept)
               ICL_TYPE_INT32, avc->states);
 #ifdef  AFS_OSF_ENV
     AFS_GUNLOCK();
-    VN_LOCK((struct vnode *)avc);
+    VN_LOCK(AFSTOV(avc));
     AFS_GLOCK();
 #endif
 
@@ -213,16 +187,16 @@ int afs_FlushVCache(struct vcache *avc, int *slept)
     /* This should put it back on the vnode free list since usecount is 1 */
     afs_vcount--;
     vSetType(avc, VREG);
-    if (avc->vrefCount > 0) {
-        VN_UNLOCK((struct vnode *)avc);
-        AFS_RELE((struct vnode *)avc);
+    if (VREFCOUNT(avc) > 0) {
+        VN_UNLOCK(AFSTOV(avc));
+        AFS_RELE(AFSTOV(avc));
     } else {
        if (afs_norefpanic) {
          printf ("flush vc refcnt < 1");
          afs_norefpanic++;
-         (void) vgone(avc, VX_NOSLEEP, (struct vnodeops *) 0);
+         (void) vgone(avc, VX_NOSLEEP, NULL);
          AFS_GLOCK();
-         VN_UNLOCK((struct vnode *)avc);
+         VN_UNLOCK(AFSTOV(avc));
        }
        else osi_Panic ("flush vc refcnt < 1");
     }
@@ -232,7 +206,7 @@ int afs_FlushVCache(struct vcache *avc, int *slept)
 
 bad:
 #ifdef AFS_OSF_ENV
-    VN_UNLOCK((struct vnode *)avc);
+    VN_UNLOCK(AFSTOV(avc));
 #endif
     return code;
 
@@ -246,12 +220,10 @@ bad:
  */
 void afs_InactiveVCache(struct vcache *avc, struct AFS_UCRED *acred)
 {
-    extern afs_rwlock_t afs_xdcache, afs_xvcache;
-    
     AFS_STATCNT(afs_inactive);
     if (avc->states & CDirty) {
       /* we can't keep trying to push back dirty data forever.  Give up. */
-      afs_InvalidateAllSegments(avc, 1/*set lock*/);  /* turns off dirty bit */
+      afs_InvalidateAllSegments(avc);  /* turns off dirty bit */
     }
     avc->states        &= ~CMAPPED;    /* mainly used by SunOS 4.0.x */
     avc->states        &= ~CDirty;     /* Turn it off */
@@ -276,7 +248,8 @@ void afs_InactiveVCache(struct vcache *avc, struct AFS_UCRED *acred)
  * held, so we don't have to worry about blocking in osi_Alloc.
  */
 static struct afs_cbr *afs_cbrSpace = 0;
-struct afs_cbr *afs_AllocCBR() {
+struct afs_cbr *afs_AllocCBR(void)
+{
     register struct afs_cbr *tsp;
     int i;
 
@@ -312,8 +285,8 @@ struct afs_cbr *afs_AllocCBR() {
  *
  * Environment: the xvcb lock is held over these calls.
  */
-afs_FreeCBR(asp)
-register struct afs_cbr *asp; {
+int afs_FreeCBR(register struct afs_cbr *asp)
+{
     asp->next = afs_cbrSpace;
     afs_cbrSpace = asp;
     return 0;
@@ -343,10 +316,9 @@ afs_int32 afs_FlushVCBs (afs_int32 lockit)
     struct vrequest treq;
     struct conn *tc;
     int safety1, safety2, safety3;
-    extern int afs_totalServers;
     XSTATS_DECLS
 
-    if (code = afs_InitReq(&treq, &afs_osi_cred)) return code;
+    if ((code = afs_InitReq(&treq, &afs_osi_cred))) return code;
     treq.flags |= O_NONBLOCK;
 
     if (lockit) MObtainWriteLock(&afs_xvcb,273);
@@ -374,18 +346,14 @@ afs_int32 afs_FlushVCBs (afs_int32 lockit)
                    callBacks[0].CallBackType = CB_EXCLUSIVE;
                    for (safety3 = 0; safety3 < MAXHOSTS*2; safety3++) {
                        tc = afs_ConnByHost(tsp, tsp->cell->fsport,
-                                           tsp->cell->cell, &treq, 0,
+                                           tsp->cell->cellNum, &treq, 0,
                                            SHARED_LOCK);
                        if (tc) {
                          XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_GIVEUPCALLBACKS);
-#ifdef RX_ENABLE_LOCKS
-                         AFS_GUNLOCK();
-#endif /* RX_ENABLE_LOCKS */
+                         RX_AFS_GUNLOCK();
                          code = RXAFS_GiveUpCallBacks(tc->id, &fidArray,
                                                       &cbArray);
-#ifdef RX_ENABLE_LOCKS
-                         AFS_GLOCK();
-#endif /* RX_ENABLE_LOCKS */
+                         RX_AFS_GLOCK();
                          XSTATS_END_TIME;
                        }
                        else code = -1;
@@ -483,12 +451,9 @@ static afs_int32 afs_QueueVCB(struct vcache *avc)
  *     entries locked.
  */
 
-afs_RemoveVCB(afid)
-    register struct VenusFid *afid;
-
-{ /*afs_RemoveVCB*/
-
-    register int i, j;
+int afs_RemoveVCB(struct VenusFid *afid)
+{
+    register int i;
     register struct server *tsp;
     register struct afs_cbr *tcbrp;
     struct afs_cbr **lcbrpp;
@@ -499,7 +464,7 @@ afs_RemoveVCB(afid)
     for(i=0;i<NSERVERS;i++) {
        for(tsp=afs_servers[i]; tsp; tsp=tsp->next) {
            /* if cell is known, and is wrong, then skip this server */
-           if (tsp->cell && tsp->cell->cell != afid->Cell) continue;
+           if (tsp->cell && tsp->cell->cellNum != afid->Cell) continue;
 
            /*
             * Otherwise, iterate through file IDs we're sending to the
@@ -521,10 +486,141 @@ afs_RemoveVCB(afid)
     ReleaseReadLock(&afs_xserver);
     MReleaseWriteLock(&afs_xvcb);
     return 0;
+}
+
+#ifdef AFS_LINUX22_ENV
 
-} /*afs_RemoveVCB*/
+static void __shrink_dcache_parent(struct dentry * parent)
+{
+       struct dentry *this_parent = parent;
+       struct list_head *next;
+       int found = 0;
+       LIST_HEAD(afs_dentry_unused);
+
+repeat:
+       next = this_parent->d_subdirs.next;
+resume:
+       while (next != &this_parent->d_subdirs) {
+               struct list_head *tmp = next;
+               struct dentry *dentry = list_entry(tmp, struct dentry, d_child);
+               next = tmp->next;
+               if (!atomic_read(&dentry->d_count)) {
+                       list_del(&dentry->d_lru);
+                       list_add(&dentry->d_lru, afs_dentry_unused.prev);
+                       found++;
+               }
+               /*
+                * Descend a level if the d_subdirs list is non-empty.
+                */
+               if (!list_empty(&dentry->d_subdirs)) {
+                       this_parent = dentry;
+                       goto repeat;
+               }
+       }
+       /*
+        * All done at this level ... ascend and resume the search.
+        */
+       if (this_parent != parent) {
+               next = this_parent->d_child.next; 
+               this_parent = this_parent->d_parent;
+               goto resume;
+       }
+
+       for (;;) {
+               struct dentry *dentry;
+               struct list_head *tmp;
+
+               tmp = afs_dentry_unused.prev;
 
+               if (tmp == &afs_dentry_unused)
+                       break;
+               list_del_init(tmp);
+               dentry = list_entry(tmp, struct dentry, d_lru);
 
+               /* Unused dentry with a count? */
+               if (atomic_read(&dentry->d_count))
+                       BUG();
+
+               DGET(dentry);
+               list_del_init(&dentry->d_hash);         /* d_drop */
+               DUNLOCK();
+               dput(dentry);
+               DLOCK();
+               if (!--found)
+                       break;
+       }
+}
+
+/* afs_TryFlushDcacheChildren -- Shakes loose vcache references held by
+ *                               children of the dentry
+ *
+ * LOCKS -- Called with afs_xvcache write locked. Drops and reaquires
+ *          AFS_GLOCK, so it can call dput, which may call iput, but
+ *          keeps afs_xvcache exclusively.
+ *
+ * Tree traversal algorithm from fs/dcache.c: select_parent()
+ */
+static void afs_TryFlushDcacheChildren(struct vcache *tvc)
+{
+    struct inode *ip = AFSTOI(tvc);
+    struct dentry *this_parent;
+    struct list_head *next;
+    struct list_head *cur;
+    struct list_head *head = &ip->i_dentry;
+    struct dentry *dentry;
+    
+    AFS_GUNLOCK();
+restart:
+#ifndef old_vcache_scheme
+    DLOCK();
+    cur = head;
+    while ((cur = cur->next) != head) {
+       dentry = list_entry(cur, struct dentry, d_alias);
+       
+        afs_Trace3(afs_iclSetp, CM_TRACE_TRYFLUSHDCACHECHILDREN,
+                  ICL_TYPE_POINTER, ip,
+                  ICL_TYPE_STRING, dentry->d_parent->d_name.name,
+                  ICL_TYPE_STRING, dentry->d_name.name);
+
+        if (!list_empty(&dentry->d_hash) && !list_empty(&dentry->d_subdirs))
+           __shrink_dcache_parent(dentry);
+
+        if (!atomic_read(&dentry->d_count)) {
+           DGET(dentry);
+           list_del_init(&dentry->d_hash);     /* d_drop */
+           DUNLOCK();
+           dput(dentry);
+           goto restart;
+        }
+    }
+    DUNLOCK();
+    AFS_GLOCK();
+#else
+restart:
+    DLOCK();
+    cur = head;
+    while ((cur = cur->next) != head) {
+       dentry = list_entry(cur, struct dentry, d_alias);
+
+        afs_Trace3(afs_iclSetp, CM_TRACE_TRYFLUSHDCACHECHILDREN,
+                  ICL_TYPE_POINTER, ip,
+                  ICL_TYPE_STRING, dentry->d_parent->d_name.name,
+                  ICL_TYPE_STRING, dentry->d_name.name);
+
+       if (!DCOUNT(dentry)) {
+           AFS_GUNLOCK();
+           DGET(dentry);
+           DUNLOCK();
+           d_drop(dentry);
+           dput(dentry);
+           AFS_GLOCK();
+           goto restart;
+       }
+    }
+    DUNLOCK();
+#endif
+}
+#endif /* AFS_LINUX22_ENV */
 
 /*
  * afs_NewVCache
@@ -541,8 +637,7 @@ afs_RemoveVCB(afid)
  *             created.
  */
 /* LOCK: afs_NewVCache  afs_xvcache W */ 
-struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
-                            afs_int32 lockit, afs_int32 locktype)
+struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp)
 {
     struct vcache *tvc;
     afs_int32 i;
@@ -560,75 +655,6 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
     int code, fv_slept;
 
     AFS_STATCNT(afs_NewVCache);
-#ifdef AFS_LINUX22_ENV
-    if (!freeVCList) {
-       /* Free some if possible. */
-        struct afs_q *tq, *uq;
-        int i; char *panicstr;
-        int vmax = 2 * afs_cacheStats;
-        int vn = VCACHE_FREE;
-
-        i = 0;
-        for(tq = VLRU.prev; tq != &VLRU && vn > 0; tq = uq) {
-           tvc = QTOV(tq);
-           uq = QPrev(tq);
-           if (tvc->states & CVFlushed) 
-                refpanic ("CVFlushed on VLRU");
-           else if (i++ > vmax)
-                refpanic ("Exceeded pool of AFS vnodes(VLRU cycle?)");
-           else if (QNext(uq) != tq)
-                refpanic ("VLRU inconsistent");
-
-           if (tvc == afs_globalVp)
-               continue;
-
-           if ( tvc->vrefCount && tvc->opens == 0 ) {
-               struct inode *ip = (struct inode*)tvc;
-               if (list_empty(&ip->i_dentry)) {
-                   vn --;
-               }
-               else {
-                   struct list_head *cur;
-                   struct list_head *head = &ip->i_dentry;
-                   int all = 1;
-               restart:
-#if defined(AFS_LINUX24_ENV)
-                   spin_lock(&dcache_lock);
-#endif
-                   cur = head;
-                   while ((cur = cur->next) != head) {
-                       struct dentry *dentry = list_entry(cur, struct dentry, d_alias);
-#if defined(AFS_LINUX24_ENV)
-                       if (!atomic_read(&dentry->d_count)) {
-#else
-                       if (!dentry->d_count) {
-#endif
-                           AFS_GUNLOCK();
-#if defined(AFS_LINUX24_ENV)
-                           dget_locked(dentry);
-                           spin_unlock(&dcache_lock);
-#else
-                           dget(dentry);
-#endif
-                           d_drop(dentry);
-                           dput(dentry);
-                           AFS_GLOCK();
-                           goto restart;
-                       }
-                       else {
-                           all = 0;
-                       }
-                   }
-#if defined(AFS_LINUX24_ENV)
-                   spin_unlock(&dcache_lock);
-#endif
-                   if (all) vn --;
-               }
-           }
-           if (tq == uq) break;
-        }
-    }
-#endif /* AFS_LINUX22_ENV */
 #ifdef AFS_OSF_ENV
 #ifdef AFS_OSF30_ENV
     if (afs_vcount >= afs_maxvcount) 
@@ -656,10 +682,10 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
                 refpanic ("Exceeded pool of AFS vnodes(VLRU cycle?)");
            else if (QNext(uq) != tq)
                 refpanic ("VLRU inconsistent");
-           else if (tvc->vrefCount < 1) 
+           else if (VREFCOUNT(tvc) < 1) 
                 refpanic ("refcnt 0 on VLRU");
 
-           if ( tvc->vrefCount == 1   &&   tvc->opens == 0 
+           if ( VREFCOUNT(tvc) == 1   &&   tvc->opens == 0 
                && (tvc->states & CUnlinkedDel) == 0) {
                code = afs_FlushVCache(tvc, &fv_slept);
                if (code == 0) {
@@ -692,7 +718,7 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
     AFS_GLOCK();
 
     tvc = nvc;
-    tvc->nextfree = (struct vcache *)0; 
+    tvc->nextfree = NULL; 
     afs_vcount++;
 #else  /* AFS_OSF_ENV */
     /* pull out a free cache entry */
@@ -702,16 +728,17 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
           tvc = QTOV(tq);
           uq = QPrev(tq);
 
-          if (tvc->states & CVFlushed)
+          if (tvc->states & CVFlushed) {
                refpanic("CVFlushed on VLRU");
-          else if (i++ > 2*afs_cacheStats) /* even allowing for a few xallocs...*/
+          } 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)
+          } else if (QNext(uq) != tq) {
                refpanic("VLRU inconsistent");
+          }
 
 #ifdef AFS_DARWIN_ENV
           if (tvc->opens == 0 && ((tvc->states & CUnlinkedDel) == 0) &&
-                tvc->vrefCount == 1 && UBCINFOEXISTS(&tvc->v)) {
+                VREFCOUNT(tvc) == 1 && UBCINFOEXISTS(&tvc->v)) {
                osi_VM_TryReclaim(tvc, &fv_slept);
                if (fv_slept) {
                   uq = VLRU.prev;
@@ -720,7 +747,28 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
                }
             }
 #endif
-          if (tvc->vrefCount == 0 && tvc->opens == 0
+#if defined(AFS_FBSD_ENV)
+          if (VREFCOUNT(tvc) == 1 && tvc->opens == 0
+              && (tvc->states & CUnlinkedDel) == 0) {
+               if (!(VOP_LOCK(&tvc->v, LK_EXCLUSIVE, curproc))) {
+                 if (VREFCOUNT(tvc) == 1 && tvc->opens == 0
+                     && (tvc->states & CUnlinkedDel) == 0) {
+                      VREFCOUNT_DEC(tvc);
+                      AFS_GUNLOCK(); /* perhaps inline inactive for locking */
+                      VOP_INACTIVE(&tvc->v, curproc);
+                      AFS_GLOCK();
+                  } else {
+                     VOP_UNLOCK(&tvc->v, 0, curproc);
+                  }
+               }
+           }
+#endif
+#if defined(AFS_LINUX22_ENV)
+           if (tvc != afs_globalVp && VREFCOUNT(tvc) && tvc->opens == 0)
+               afs_TryFlushDcacheChildren(tvc);
+#endif
+
+          if (VREFCOUNT(tvc) == 0 && tvc->opens == 0
               && (tvc->states & CUnlinkedDel) == 0) {
                code = afs_FlushVCache(tvc, &fv_slept);
                if (code == 0) {
@@ -739,7 +787,7 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
        /* 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));
-#ifdef AFS_AIX32_ENV
+#ifdef KERNEL_HAVE_PIN
        pin((char *)tvc, sizeof(struct vcache));        /* XXX */
 #endif
 #ifdef AFS_MACH_ENV
@@ -768,7 +816,7 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
     else {
        tvc = freeVCList;   /* take from free list */
        freeVCList = tvc->nextfree;
-       tvc->nextfree = (struct vcache *)0;
+       tvc->nextfree = NULL;
     }
 #endif /* AFS_OSF_ENV */
 
@@ -792,8 +840,8 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
     tvc->v.v_vm_info->pager = MEMORY_OBJECT_NULL;
 #endif /* AFS_MACH_ENV */
     tvc->parentVnode = 0;
-    tvc->mvid = (struct VenusFid *) 0;
-    tvc->linkData = (char *) 0;
+    tvc->mvid = NULL;
+    tvc->linkData = NULL;
     tvc->cbExpires = 0;
     tvc->opens = 0;
     tvc->execsOrWriters = 0;
@@ -813,9 +861,9 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
     hzero(tvc->m.DataVersion);         /* in case we copy it into flushDV */
 #ifdef AFS_OSF_ENV
     /* Hold it for the LRU (should make count 2) */
-    VN_HOLD((struct vnode *)tvc);
+    VN_HOLD(AFSTOV(tvc));
 #else  /* AFS_OSF_ENV */
-    tvc->vrefCount = 1;        /* us */
+    VREFCOUNT_SET(tvc, 1);     /* us */
 #endif /* AFS_OSF_ENV */
 #ifdef AFS_AIX32_ENV
     LOCK_INIT(&tvc->pvmlock, "vcache pvmlock");
@@ -882,12 +930,12 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
     AFS_VN_INIT_BUF_LOCK(&(tvc->v));
 #endif
 #else
-    SetAfsVnode((struct vnode *)tvc);
+    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((struct vnode *)tvc); 
+    cache_purge(AFSTOV(tvc)); 
     tvc->v.v_data=tvc;
     tvc->v.v_tag=VT_AFS;
     /* VLISTNONE(&tvc->v); */
@@ -895,6 +943,14 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
     tvc->v.v_freelist.tqe_prev=(struct vnode **)0xdeadb;
     /*tvc->vrefCount++;*/
 #endif 
+#ifdef AFS_FBSD_ENV
+    lockinit(&tvc->rwlock, PINOD, "vcache rwlock", 0, 0);
+    cache_purge(AFSTOV(tvc)); 
+    tvc->v.v_data=tvc;
+    tvc->v.v_tag=VT_AFS;
+    tvc->v.v_usecount++; /* steal an extra ref for now so vfree never happens */
+                         /* This extra ref is dealt with above... */
+#endif
     /*
      * The proper value for mvstat (for root fids) is setup by the caller.
      */
@@ -945,7 +1001,7 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
 #endif /* AFS_SGI_ENV */
 #if defined(AFS_LINUX22_ENV)
     {
-       struct inode *ip = (struct inode*)tvc;
+       struct inode *ip = AFSTOI(tvc);
        sema_init(&ip->i_sem, 1);
 #if defined(AFS_LINUX24_ENV)
        sema_init(&ip->i_zombie, 1);
@@ -958,8 +1014,20 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
        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
        ip->i_data.host = (void*) ip;
+#ifdef STRUCT_ADDRESS_SPACE_HAS_GFP_MASK
+       ip->i_data.gfp_mask = GFP_HIGHUSER;
+#endif
        ip->i_mapping = &ip->i_data;
+#ifdef STRUCT_INODE_HAS_I_TRUNCATE_SEM
+       init_rwsem(&ip->i_truncate_sem);
+#endif
 #else
        sema_init(&ip->i_atomic_write, 1);
        init_waitqueue(&ip->i_wait);
@@ -976,7 +1044,7 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
     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));
-    tvc->slocks = (struct SimpleLocks *)0;
+    tvc->slocks = NULL;
     i = VCHash(afid);
 
     tvc->hnext = afs_vhashT[i];
@@ -1011,17 +1079,13 @@ struct vcache *afs_NewVCache(struct VenusFid *afid, struct server *serverp,
  *     doflocks : Do we handle flocks?
  */
 /* LOCK: afs_FlushActiveVcaches afs_xvcache N */
-void
-afs_FlushActiveVcaches(doflocks)
-    register afs_int32 doflocks;
-
-{ /*afs_FlushActiveVcaches*/
-
+void afs_FlushActiveVcaches(register afs_int32 doflocks)
+{
     register struct vcache *tvc;
     register int i;
     register struct conn *tc;
     register afs_int32 code;
-    register struct AFS_UCRED *cred;
+    register struct AFS_UCRED *cred = NULL;
     struct vrequest treq, ureq;
     struct AFSVolSync tsync;
     int didCore;
@@ -1043,23 +1107,19 @@ afs_FlushActiveVcaches(doflocks)
                    tc = afs_Conn(&tvc->fid, &treq, SHARED_LOCK);
                    if (tc) {
                      XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_EXTENDLOCK);
-#ifdef RX_ENABLE_LOCKS
-                     AFS_GUNLOCK();
-#endif /* RX_ENABLE_LOCKS */
+                     RX_AFS_GUNLOCK();
                      code =
                            RXAFS_ExtendLock(tc->id,
                                             (struct AFSFid *) &tvc->fid.Fid,
                                             &tsync);
-#ifdef RX_ENABLE_LOCKS
-                     AFS_GLOCK();
-#endif /* RX_ENABLE_LOCKS */
+                     RX_AFS_GLOCK();
                      XSTATS_END_TIME;
                    }
                    else code = -1;
                } while
                    (afs_Analyze(tc, code, &tvc->fid, &treq,
                                 AFS_STATS_FS_RPCIDX_EXTENDLOCK,
-                                SHARED_LOCK, (struct cell *)0));
+                                SHARED_LOCK, NULL));
 
                ReleaseWriteLock(&tvc->lock);
                ObtainReadLock(&afs_xvcache);
@@ -1081,7 +1141,7 @@ afs_FlushActiveVcaches(doflocks)
                /*
                 * That's because if we come in via the CUnlinkedDel bit state path we'll be have 0 refcnt
                 */
-               osi_Assert(tvc->vrefCount > 0);
+               osi_Assert(VREFCOUNT(tvc) > 0);
                AFS_RWLOCK((vnode_t *)tvc, VRWLOCK_WRITE);
 #endif
                ObtainWriteLock(&tvc->lock,52);
@@ -1089,7 +1149,7 @@ afs_FlushActiveVcaches(doflocks)
                    tvc->states &= ~CCore;
                    /* XXXX Find better place-holder for cred XXXX */
                    cred = (struct AFS_UCRED *) tvc->linkData;
-                   tvc->linkData = (char *) 0; /* XXX */
+                   tvc->linkData = NULL;       /* XXX */
                    afs_InitReq(&ureq, cred);
                    afs_Trace2(afs_iclSetp, CM_TRACE_ACTCCORE,
                               ICL_TYPE_POINTER, tvc,
@@ -1136,16 +1196,16 @@ afs_FlushActiveVcaches(doflocks)
                AFS_FAST_RELE(tvc);
                if (didCore) {
 #ifdef AFS_GFS_ENV
-                   tvc->vrefCount--;
+                   VREFCOUNT_DEC(tvc);
 #else
-                   AFS_RELE((struct vnode *)tvc);
+                   AFS_RELE(AFSTOV(tvc));
 #endif
                    /* Matches write code setting CCore flag */
                    crfree(cred);
                }
            }          
 #ifdef AFS_DARWIN_ENV
-            if (tvc->vrefCount == 1 && UBCINFOEXISTS(&tvc->v)) {
+            if (VREFCOUNT(tvc) == 1 && UBCINFOEXISTS(&tvc->v)) {
                if (tvc->opens) panic("flushactive open, hasubc, but refcnt 1");
                osi_VM_TryReclaim(tvc,0);
            }
@@ -1153,8 +1213,7 @@ afs_FlushActiveVcaches(doflocks)
        }
     }
     ReleaseReadLock(&afs_xvcache);
-
-} /*afs_FlushActiveVcaches*/
+}
 
 
 /*
@@ -1198,7 +1257,7 @@ int afs_VerifyVCache2(struct vcache *avc, struct vrequest *areq)
     }
     ObtainWriteLock(&afs_xcbhash, 461);
     avc->states &= ~( CStatd | CUnique );   
-    avc->callback = (struct server *)0;
+    avc->callback = NULL;
     afs_DequeueCallback(avc);
     ReleaseWriteLock(&afs_xcbhash);
     ReleaseWriteLock(&avc->lock);
@@ -1213,10 +1272,10 @@ int afs_VerifyVCache2(struct vcache *avc, struct vrequest *areq)
       osi_dnlc_purgevp (avc);
     
     /* fetch the status info */
-    tvc = afs_GetVCache(&avc->fid, areq, (afs_int32*)0, avc, READ_LOCK);
+    tvc = afs_GetVCache(&avc->fid, areq, NULL, avc);
     if (!tvc) return ENOENT;
     /* Put it back; caller has already incremented vrefCount */
-    afs_PutVCache(tvc, READ_LOCK);
+    afs_PutVCache(tvc);
     return 0;
 
 } /*afs_VerifyVCache*/
@@ -1237,13 +1296,10 @@ int afs_VerifyVCache2(struct vcache *avc, struct vrequest *areq)
  *
  * Callers:  as of 1992-04-29, only called by WriteVCache
  */
-static void
-afs_SimpleVStat(avc, astat, areq)
-    register struct vcache *avc;
-    register struct AFSFetchStatus *astat;
-    struct vrequest *areq;
-{ /*afs_SimpleVStat*/
-
+static void afs_SimpleVStat(register struct vcache *avc, 
+       register struct AFSFetchStatus *astat, struct vrequest *areq)
+{
+    afs_size_t length;
     AFS_STATCNT(afs_SimpleVStat);
 
 #ifdef AFS_SGI_ENV
@@ -1254,16 +1310,21 @@ afs_SimpleVStat(avc, astat, areq)
 #endif
 
        {
+#ifdef AFS_64BIT_ClIENT
+           FillInt64(length, astat->Length_hi, astat->Length);
+#else /* AFS_64BIT_CLIENT */
+           length = astat->Length;
+#endif /* AFS_64BIT_CLIENT */
 #if defined(AFS_SGI_ENV)
            osi_Assert((valusema(&avc->vc_rwlock) <= 0) &&
                   (OSI_GET_LOCKID() == avc->vc_rwlockid));
-           if (astat->Length < avc->m.Length) {
+           if (length < avc->m.Length) {
                vnode_t *vp = (vnode_t *)avc;
                
                osi_Assert(WriteLocked(&avc->lock));
                ReleaseWriteLock(&avc->lock);
                AFS_GUNLOCK();
-               PTOSSVP(vp, (off_t)astat->Length, (off_t)MAXLONG);
+               PTOSSVP(vp, (off_t)length, (off_t)MAXLONG);
                AFS_GLOCK();
                ObtainWriteLock(&avc->lock,67);
            }
@@ -1271,9 +1332,9 @@ afs_SimpleVStat(avc, astat, areq)
            /* if writing the file, don't fetch over this value */
            afs_Trace3(afs_iclSetp, CM_TRACE_SIMPLEVSTAT,
                       ICL_TYPE_POINTER, avc,
-                      ICL_TYPE_INT32, avc->m.Length,
-                      ICL_TYPE_INT32, astat->Length);
-           avc->m.Length = astat->Length;
+                      ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length),
+                      ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(length));
+           avc->m.Length = length;
            avc->m.Date = astat->ClientModTime;
        }
     avc->m.Owner = astat->Owner;
@@ -1313,7 +1374,7 @@ afs_SimpleVStat(avc, astat, areq)
          */
 #endif /* badidea */
          if (avc->Access && (ac = afs_FindAxs(avc->Access, areq->uid)))
-           ac->axess =  astat->CallerAccess;
+           ac->axess = astat->CallerAccess;
          else  /* not found, add a new one if possible */
            afs_AddAxs(avc->Access, areq->uid, astat->CallerAccess);
     }
@@ -1338,12 +1399,9 @@ afs_SimpleVStat(avc, astat, areq)
  *     Must be called with a shared lock held on the vnode.
  */
 
-afs_WriteVCache(avc, astatus, areq)
-    register struct vcache *avc;
-    register struct AFSStoreStatus *astatus;
-    struct vrequest *areq;
-
-{ /*afs_WriteVCache*/
+int afs_WriteVCache(register struct vcache *avc, 
+       register struct AFSStoreStatus *astatus, struct vrequest *areq)
+{
   afs_int32 code;
   struct conn *tc;
     struct AFSFetchStatus OutStatus;
@@ -1352,28 +1410,24 @@ afs_WriteVCache(avc, astatus, areq)
 
     AFS_STATCNT(afs_WriteVCache);
     afs_Trace2(afs_iclSetp, CM_TRACE_WVCACHE, ICL_TYPE_POINTER, avc,
-              ICL_TYPE_INT32, avc->m.Length);
+              ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->m.Length));
 
     do {
        tc = afs_Conn(&avc->fid, areq, SHARED_LOCK);
        if (tc) {
          XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_STORESTATUS);
-#ifdef RX_ENABLE_LOCKS
-         AFS_GUNLOCK();
-#endif /* RX_ENABLE_LOCKS */
+         RX_AFS_GUNLOCK();
          code = RXAFS_StoreStatus(tc->id,
                                   (struct AFSFid *) &avc->fid.Fid,
                                   astatus, &OutStatus, &tsync);
-#ifdef RX_ENABLE_LOCKS
-         AFS_GLOCK();
-#endif /* RX_ENABLE_LOCKS */
+         RX_AFS_GLOCK();
          XSTATS_END_TIME;
        }
        else code = -1;
     } while
        (afs_Analyze(tc, code, &avc->fid, areq,
                     AFS_STATS_FS_RPCIDX_STORESTATUS,
-                    SHARED_LOCK, (struct cell *)0));
+                    SHARED_LOCK, NULL));
 
     UpgradeSToWLock(&avc->lock,20);
     if (code == 0) {
@@ -1418,17 +1472,17 @@ afs_WriteVCache(avc, astatus, areq)
  *       been modified.  This is less than ideal.  I haven't thought about
  *       it sufficiently to be certain that it is adequate.
  */
-void
-afs_ProcessFS(avc, astat, areq)
-    register struct vcache *avc;
-    struct vrequest *areq;
-    register struct AFSFetchStatus *astat;
-
-{ /*afs_ProcessFS*/
-
-    register int i;
+void afs_ProcessFS(register struct vcache *avc, register struct AFSFetchStatus *astat, 
+       struct vrequest *areq)
+{
+    afs_size_t length;
     AFS_STATCNT(afs_ProcessFS);
 
+#ifdef AFS_64BIT_CLIENT
+    FillInt64(length, astat->Length_hi, astat->Length);
+#else /* AFS_64BIT_CLIENT */
+    length = astat->Length;
+#endif /* AFS_64BIT_CLIENT */
     /* WARNING: afs_DoBulkStat uses the Length field to store a sequence
      * number for each bulk status request. Under no circumstances
      * should afs_DoBulkStat store a sequence number if the new
@@ -1446,9 +1500,9 @@ afs_ProcessFS(avc, astat, areq)
             *  values.
             */
            afs_Trace3(afs_iclSetp, CM_TRACE_PROCESSFS, ICL_TYPE_POINTER, avc,
-                      ICL_TYPE_INT32, avc->m.Length,
-                      ICL_TYPE_INT32, astat->Length);
-           avc->m.Length = astat->Length;
+                      ICL_TYPE_OFFSET, ICL_HANDLE_OFFSET(avc->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);
@@ -1465,9 +1519,16 @@ afs_ProcessFS(avc, astat, areq)
        avc->m.Mode |= S_IFDIR;
     }
     else if (astat->FileType == SymbolicLink) {
-       vSetType(avc, VLNK);
-       avc->m.Mode |= S_IFLNK;
-       if ((avc->m.Mode & 0111) == 0) avc->mvstat = 1;
+       if (afs_fakestat_enable && (avc->m.Mode & 0111) == 0) {
+           vSetType(avc, VDIR);
+           avc->m.Mode |= S_IFDIR;
+       } else {
+           vSetType(avc, VLNK);
+           avc->m.Mode |= S_IFLNK;
+       }
+       if ((avc->m.Mode & 0111) == 0) {
+           avc->mvstat = 1;
+       }
     }
     avc->anyAccess = astat->AnonymousAccess;
 #ifdef badidea
@@ -1490,7 +1551,7 @@ afs_ProcessFS(avc, astat, areq)
       {
        struct axscache *ac;
        if (avc->Access && (ac = afs_FindAxs(avc->Access, areq->uid)))
-         ac->axess =  astat->CallerAccess;
+         ac->axess = astat->CallerAccess;
        else  /* not found, add a new one if possible */
          afs_AddAxs(avc->Access, areq->uid, astat->CallerAccess);
       }
@@ -1498,23 +1559,18 @@ afs_ProcessFS(avc, astat, areq)
 #ifdef AFS_LINUX22_ENV
     vcache2inode(avc);    /* Set the inode attr cache */
 #endif
+#ifdef AFS_DARWIN_ENV
+   osi_VM_Setup(avc,1);
+#endif
 
 } /*afs_ProcessFS*/
 
 
-afs_RemoteLookup(afid, areq, name, nfid, OutStatusp, CallBackp, serverp, tsyncp)
-    register struct VenusFid *afid;
-    struct vrequest *areq;
-    char *name;
-    struct VenusFid *nfid;
-    struct AFSFetchStatus *OutStatusp;
-    struct AFSCallBack *CallBackp;
-    struct server **serverp;
-    struct AFSVolSync *tsyncp;
+int afs_RemoteLookup(register struct VenusFid *afid, struct vrequest *areq, 
+       char *name, struct VenusFid *nfid, struct AFSFetchStatus *OutStatusp, 
+       struct AFSCallBack *CallBackp, struct server **serverp, struct AFSVolSync *tsyncp)
 {
-    afs_int32 code, i;
-    register struct vcache *tvc;
-    struct volume *tvp;
+    afs_int32 code;
     afs_uint32 start;
     register struct conn *tc;
     struct AFSFetchStatus OutDirStatus;
@@ -1527,22 +1583,18 @@ afs_RemoteLookup(afid, areq, name, nfid, OutStatusp, CallBackp, serverp, tsyncp)
            if (serverp) *serverp = tc->srvr->server;
            start = osi_Time();
            XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_XLOOKUP);
-#ifdef RX_ENABLE_LOCKS
-           AFS_GUNLOCK();
-#endif /* RX_ENABLE_LOCKS */
+           RX_AFS_GUNLOCK();
            code = RXAFS_Lookup(tc->id, (struct AFSFid *) &afid->Fid, name,
                                (struct AFSFid *) &nfid->Fid, 
                                OutStatusp, &OutDirStatus, CallBackp, tsyncp);
-#ifdef RX_ENABLE_LOCKS
-           AFS_GLOCK();
-#endif /* RX_ENABLE_LOCKS */
+           RX_AFS_GLOCK();
            XSTATS_END_TIME;
        } else 
            code = -1;
     } while
        (afs_Analyze(tc, code, afid, areq,
                     AFS_STATS_FS_RPCIDX_XLOOKUP,
-                    SHARED_LOCK, (struct cell *)0));
+                    SHARED_LOCK, NULL));
 
     return code;
 }
@@ -1580,16 +1632,14 @@ afs_RemoteLookup(afid, areq, name, nfid, OutStatusp, CallBackp, serverp, tsyncp)
  *     locking directories in a constant order.
  * NB.  NewVCache -> FlushVCache presently (4/10/95) drops the xvcache lock.
  */
-struct vcache *afs_GetVCache(afid, areq, cached, avc, locktype)
-    register struct VenusFid *afid;
-    struct vrequest *areq;
-    afs_int32 *cached;
-    afs_int32 locktype;
-    struct vcache *avc; /* might have a vcache structure already, which must
+   /* might have a vcache structure already, which must
                         * already be held by the caller */
-{ /*afs_GetVCache*/
 
-    afs_int32 code, i, newvcache=0;
+struct vcache *afs_GetVCache(register struct VenusFid *afid, struct vrequest *areq, 
+       afs_int32 *cached, struct vcache *avc)
+{
+
+    afs_int32 code, newvcache=0;
     register struct vcache *tvc;
     struct volume *tvp;
     afs_int32 retry;
@@ -1598,10 +1648,13 @@ struct vcache *afs_GetVCache(afid, areq, cached, avc, locktype)
 
     if (cached) *cached = 0;           /* Init just in case */
 
+#if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
 loop:
+#endif
+
     ObtainSharedLock(&afs_xvcache,5); 
 
-    tvc = afs_FindVCache(afid, 0, 0, &retry, DO_STATS | DO_VLRU );
+    tvc = afs_FindVCache(afid, &retry, DO_STATS | DO_VLRU );
     if (tvc && retry) {
 #if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
        ReleaseSharedLock(&afs_xvcache);
@@ -1622,7 +1675,7 @@ loop:
        UpgradeSToWLock(&afs_xvcache,21);
 
        /* no cache entry, better grab one */
-       tvc = afs_NewVCache(afid, (struct server *)0, 1, WRITE_LOCK);
+       tvc = afs_NewVCache(afid, NULL);
        newvcache = 1;
 
        ConvertWToSLock(&afs_xvcache);
@@ -1639,7 +1692,7 @@ loop:
 #endif
        ReleaseWriteLock(&tvc->lock);
 #ifdef AFS_DARWIN_ENV
-        osi_VM_Setup(tvc);
+        osi_VM_Setup(tvc,0);
 #endif
        return tvc;
     }
@@ -1683,8 +1736,15 @@ loop:
     /* stat the file */
     afs_RemoveVCB(afid);
     {
-    struct AFSFetchStatus OutStatus;
-    code = afs_FetchStatus(tvc, afid, areq, &OutStatus);
+       struct AFSFetchStatus OutStatus;
+
+       if (afs_DynrootNewVnode(tvc, &OutStatus)) {
+           afs_ProcessFS(tvc, &OutStatus, areq);
+           tvc->states |= CStatd | CUnique;
+           code = 0;
+       } else {
+           code = afs_FetchStatus(tvc, afid, areq, &OutStatus);
+       }
     }
 
     if (code) {
@@ -1693,13 +1753,10 @@ loop:
        ObtainReadLock(&afs_xvcache);
        AFS_FAST_RELE(tvc);
        ReleaseReadLock(&afs_xvcache);
-       return (struct vcache *) 0;
+       return NULL;
     }
 
     ReleaseWriteLock(&tvc->lock);
-#ifdef AFS_DARWIN_ENV
-    osi_VM_Setup(avc);
-#endif
     return tvc;
 
 } /*afs_GetVCache*/
@@ -1707,10 +1764,9 @@ loop:
 
 
 struct vcache *afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
-                               afs_int32 *cached, afs_int32 locktype,
-                               struct vcache *adp, char *aname)
+                               afs_int32 *cached, struct vcache *adp, char *aname)
 {
-    afs_int32 code, now, newvcache=0, hash;
+    afs_int32 code, now, newvcache=0;
     struct VenusFid nfid;
     register struct vcache *tvc;
     struct volume *tvp;
@@ -1724,9 +1780,12 @@ struct vcache *afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
     AFS_STATCNT(afs_GetVCache);
     if (cached) *cached = 0;           /* Init just in case */
 
+#if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
   loop1:
+#endif
+
     ObtainReadLock(&afs_xvcache);
-    tvc = afs_FindVCache(afid, 0, 0, &retry, DO_STATS /* no vlru */);
+    tvc = afs_FindVCache(afid, &retry, DO_STATS /* no vlru */);
 
     if (tvc) {
       ReleaseReadLock(&afs_xvcache);
@@ -1761,9 +1820,12 @@ struct vcache *afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
     code = afs_RemoteLookup(&adp->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, 0, 0, &retry, DO_VLRU /* no xstats now*/);
+    tvc = afs_FindVCache(&nfid, &retry, DO_VLRU /* no xstats now*/);
     if (tvc && retry) {
 #if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
       ReleaseSharedLock(&afs_xvcache);
@@ -1775,7 +1837,7 @@ struct vcache *afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
     if (!tvc) {
         /* no cache entry, better grab one */
        UpgradeSToWLock(&afs_xvcache,22);
-        tvc = afs_NewVCache(&nfid, (struct server *)0, 1, WRITE_LOCK);
+        tvc = afs_NewVCache(&nfid, NULL);
        newvcache = 1;
         ConvertWToSLock(&afs_xvcache);
     }
@@ -1817,7 +1879,7 @@ struct vcache *afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
        ObtainReadLock(&afs_xvcache);
        AFS_FAST_RELE(tvc);
        ReleaseReadLock(&afs_xvcache);
-       return (struct vcache *) 0;
+       return NULL;
     }
 
     ObtainWriteLock(&afs_xcbhash, 466);
@@ -1835,7 +1897,7 @@ struct vcache *afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
            tvc->states &= ~CBulkFetching;
            afs_QueueCallback(tvc, CBHash(3600), tvp); 
        } else {
-           tvc->callback = (struct server *)0;
+           tvc->callback = NULL;
            afs_DequeueCallback(tvc);
            tvc->states &= ~(CStatd | CUnique);   
            if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1)) 
@@ -1845,7 +1907,7 @@ struct vcache *afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
        afs_DequeueCallback(tvc);
        tvc->states &= ~CStatd; 
        tvc->states &= ~CUnique;   
-       tvc->callback = (struct server *)0;
+       tvc->callback = NULL;
        if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1)) 
          osi_dnlc_purgedp (tvc);  /* if it (could be) a directory */
     }  
@@ -1855,18 +1917,15 @@ struct vcache *afs_LookupVCache(struct VenusFid *afid, struct vrequest *areq,
     afs_ProcessFS(tvc, &OutStatus, areq);
 
     ReleaseWriteLock(&tvc->lock);
-#ifdef AFS_DARWIN_ENV
-    osi_VM_Setup(tvc);
-#endif
     return tvc;
 
 }
 
 struct vcache *afs_GetRootVCache(struct VenusFid *afid,
                                 struct vrequest *areq, afs_int32 *cached,
-                                struct volume *tvolp, afs_int32 locktype)
+                                struct volume *tvolp)
 {
-    afs_int32 code, i, newvcache = 0, haveStatus = 0;
+    afs_int32 code = 0, i, newvcache = 0, haveStatus = 0;
     afs_int32 getNewFid = 0;
     afs_uint32 start;
     struct VenusFid nfid;
@@ -1875,7 +1934,7 @@ struct vcache *afs_GetRootVCache(struct VenusFid *afid,
     struct AFSFetchStatus OutStatus;
     struct AFSCallBack CallBack;
     struct AFSVolSync tsync;
-    int origCBs;
+    int origCBs = 0;
 
     start = osi_Time();
 
@@ -1886,10 +1945,10 @@ struct vcache *afs_GetRootVCache(struct VenusFid *afid,
        tfid = *afid;
        tfid.Fid.Vnode = 0;     /* Means get rootfid of volume */
        origCBs = afs_allCBs; /* ignore InitCallBackState */
-       code = afs_RemoteLookup(&tfid, areq, (char *)0, &nfid, 
+       code = afs_RemoteLookup(&tfid, areq, NULL, &nfid, 
                                &OutStatus, &CallBack, &serverp, &tsync);
        if (code) {
-           return (struct vcache *)0;
+           return NULL;
        }
 /*     ReleaseReadLock(&tvolp->lock);           */
        ObtainWriteLock(&tvolp->lock,56);
@@ -1914,7 +1973,7 @@ struct vcache *afs_GetRootVCache(struct VenusFid *afid,
             * can be safely implemented */
            int vg;
            AFS_GUNLOCK();
-            vg = vget((struct vnode *)tvc);   /* this bumps ref count */
+            vg = vget(AFSTOV(tvc));   /* this bumps ref count */
            AFS_GLOCK();
            if (vg)
                 continue;
@@ -1938,7 +1997,7 @@ struct vcache *afs_GetRootVCache(struct VenusFid *afid,
     if (!tvc) {
        UpgradeSToWLock(&afs_xvcache,23);
        /* no cache entry, better grab one */
-       tvc = afs_NewVCache(afid, (struct server *)0, 1, WRITE_LOCK);
+       tvc = afs_NewVCache(afid, NULL);
        newvcache = 1;
        afs_stats_cmperf.vcacheMisses++;
     }
@@ -1982,7 +2041,7 @@ struct vcache *afs_GetRootVCache(struct VenusFid *afid,
 
       ObtainReadLock(&tvc->lock);
       tvc->states &= ~CUnique;   
-      tvc->callback = (struct server *)0;              /* redundant, perhaps */
+      tvc->callback = NULL;              /* redundant, perhaps */
       ReleaseReadLock(&tvc->lock);
     }
 
@@ -2014,14 +2073,14 @@ struct vcache *afs_GetRootVCache(struct VenusFid *afid,
        tfid = *afid;
        tfid.Fid.Vnode = 0;     /* Means get rootfid of volume */
        origCBs = afs_allCBs; /* ignore InitCallBackState */
-       code = afs_RemoteLookup(&tfid, areq, (char *)0, &nfid, &OutStatus,
+       code = afs_RemoteLookup(&tfid, areq, NULL, &nfid, &OutStatus,
                                &CallBack, &serverp, &tsync);
     }
 
     if (code) {
        ObtainWriteLock(&afs_xcbhash, 467);
        afs_DequeueCallback(tvc);
-       tvc->callback = (struct server *)0;
+       tvc->callback = NULL;
        tvc->states &= ~(CStatd|CUnique);  
        ReleaseWriteLock(&afs_xcbhash);
        if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1)) 
@@ -2030,7 +2089,7 @@ struct vcache *afs_GetRootVCache(struct VenusFid *afid,
        ObtainReadLock(&afs_xvcache);
        AFS_FAST_RELE(tvc);
        ReleaseReadLock(&afs_xvcache);
-       return (struct vcache *) 0;
+       return NULL;
     }
        
     ObtainWriteLock(&afs_xcbhash, 468);
@@ -2051,7 +2110,7 @@ struct vcache *afs_GetRootVCache(struct VenusFid *afid,
        }
     } else {
        afs_DequeueCallback(tvc);
-       tvc->callback = (struct server *)0;
+       tvc->callback = NULL;
        tvc->states &= ~(CStatd | CUnique);
        if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1)) 
          osi_dnlc_purgedp (tvc);  /* if it (could be) a directory */
@@ -2074,7 +2133,7 @@ afs_int32 afs_FetchStatus(struct vcache *avc, struct VenusFid *afid,
                      struct vrequest *areq, struct AFSFetchStatus *Outsp)
 {
   int code;
-  afs_uint32 start;
+  afs_uint32 start = 0;
   register struct conn *tc;
   struct AFSCallBack CallBack;
   struct AFSVolSync tsync;
@@ -2088,15 +2147,11 @@ afs_int32 afs_FetchStatus(struct vcache *avc, struct VenusFid *afid,
            avc->callback = tc->srvr->server;
            start = osi_Time();
            XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_FETCHSTATUS);
-#ifdef RX_ENABLE_LOCKS
-           AFS_GUNLOCK();
-#endif /* RX_ENABLE_LOCKS */
+           RX_AFS_GUNLOCK();
            code = RXAFS_FetchStatus(tc->id,
                                     (struct AFSFid *) &afid->Fid,
                                     Outsp, &CallBack, &tsync);
-#ifdef RX_ENABLE_LOCKS
-           AFS_GLOCK();
-#endif /* RX_ENABLE_LOCKS */
+           RX_AFS_GLOCK();
 
            XSTATS_END_TIME;
 
@@ -2105,7 +2160,7 @@ afs_int32 afs_FetchStatus(struct vcache *avc, struct VenusFid *afid,
     } while
        (afs_Analyze(tc, code, afid, areq,
                     AFS_STATS_FS_RPCIDX_FETCHSTATUS,
-                    SHARED_LOCK, (struct cell *)0));
+                    SHARED_LOCK, NULL));
 
 if (!code) {
   afs_ProcessFS(avc, Outsp, areq);
@@ -2128,7 +2183,7 @@ if (!code) {
        }
     else {
       afs_DequeueCallback(avc);
-      avc->callback = (struct server *)0;
+      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 */
@@ -2136,7 +2191,7 @@ if (!code) {
   }
   else {
     afs_DequeueCallback(avc);
-    avc->callback = (struct server *)0;
+    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 */
@@ -2179,16 +2234,10 @@ return code;
  * Environment:
  *     Nothing interesting.
  */
-void
-afs_StuffVcache(afid, OutStatus, CallBack, tc, areq)
-    register struct VenusFid *afid;
-    struct AFSFetchStatus *OutStatus;
-    struct AFSCallBack *CallBack;
-    register struct conn *tc;
-    struct vrequest *areq;
-
-{ /*afs_StuffVcache*/
-
+void afs_StuffVcache(register struct VenusFid *afid, 
+       struct AFSFetchStatus *OutStatus, struct AFSCallBack *CallBack, 
+       register struct conn *tc, struct vrequest *areq)
+{
     register afs_int32 code, i, newvcache=0;
     register struct vcache *tvc;
     struct AFSVolSync tsync;
@@ -2204,7 +2253,7 @@ afs_StuffVcache(afid, OutStatus, CallBack, tc, areq)
   loop:
     ObtainSharedLock(&afs_xvcache,8);
 
-    tvc = afs_FindVCache(afid, 0, 0, &retry, DO_VLRU /* no stats */);
+    tvc = afs_FindVCache(afid, &retry, DO_VLRU /* no stats */);
     if (tvc && retry) {
 #if    defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
        ReleaseSharedLock(&afs_xvcache);
@@ -2216,7 +2265,7 @@ afs_StuffVcache(afid, OutStatus, CallBack, tc, areq)
     if (!tvc) {
        /* no cache entry, better grab one */
        UpgradeSToWLock(&afs_xvcache,25);
-       tvc = afs_NewVCache(afid, (struct server *)0, 1, WRITE_LOCK);
+       tvc = afs_NewVCache(afid, NULL);
        newvcache = 1;
        ConvertWToSLock(&afs_xvcache);
     }
@@ -2277,7 +2326,7 @@ afs_StuffVcache(afid, OutStatus, CallBack, tc, areq)
      }
     else {
       afs_DequeueCallback(tvc);
-      tvc->callback = (struct server *)0;
+      tvc->callback = NULL;
       tvc->states &= ~(CStatd|CUnique);  
       if ((tvc->states & CForeign) || (tvc->fid.Fid.Vnode & 1)) 
        osi_dnlc_purgedp (tvc);  /* if it (could be) a directory */
@@ -2299,7 +2348,7 @@ afs_StuffVcache(afid, OutStatus, CallBack, tc, areq)
     /*
      * Release ref count... hope this guy stays around...
      */
-    afs_PutVCache(tvc, WRITE_LOCK);
+    afs_PutVCache(tvc);
 } /*afs_StuffVcache*/
 #endif
 
@@ -2315,12 +2364,8 @@ afs_StuffVcache(afid, OutStatus, CallBack, tc, areq)
  * Environment:
  *     Nothing interesting.
  */
-void
-afs_PutVCache(avc, locktype)
-    register struct vcache *avc;
-    afs_int32 locktype;
-{ /*afs_PutVCache*/
-
+void afs_PutVCache(register struct vcache *avc)
+{
     AFS_STATCNT(afs_PutVCache);
     /*
      * Can we use a read lock here?
@@ -2349,8 +2394,7 @@ afs_PutVCache(avc, locktype)
  *      must be shared-- we upgrade it here.
  */
 
-struct vcache *afs_FindVCache(struct VenusFid *afid, afs_int32 lockit,
-                             afs_int32 locktype, afs_int32 *retry, afs_int32 flag)
+struct vcache *afs_FindVCache(struct VenusFid *afid, afs_int32 *retry, afs_int32 flag)
 {
 
     register struct vcache *tvc;
@@ -2365,7 +2409,7 @@ struct vcache *afs_FindVCache(struct VenusFid *afid, afs_int32 lockit,
             /* Grab this vnode, possibly reactivating from the free list */
            int vg;
            AFS_GUNLOCK();
-            vg = vget((struct vnode *)tvc);
+            vg = vget(AFSTOV(tvc));
            AFS_GLOCK();
            if (vg)
                 continue;
@@ -2415,7 +2459,7 @@ struct vcache *afs_FindVCache(struct VenusFid *afid, afs_int32 lockit,
     if (flag & DO_STATS) {
       if (tvc)         afs_stats_cmperf.vcacheHits++;
       else     afs_stats_cmperf.vcacheMisses++;
-      if (afid->Cell == LOCALCELL)
+      if (afs_IsPrimaryCellNum(afid->Cell))
         afs_stats_cmperf.vlocalAccesses++;
       else
         afs_stats_cmperf.vremoteAccesses++;
@@ -2427,7 +2471,7 @@ struct vcache *afs_FindVCache(struct VenusFid *afid, afs_int32 lockit,
 #endif
 #ifdef AFS_DARWIN_ENV
     if (tvc)
-        osi_VM_Setup(tvc);
+        osi_VM_Setup(tvc, 0);
 #endif
     return tvc;
 } /*afs_FindVCache*/
@@ -2458,21 +2502,18 @@ struct vcache *afs_FindVCache(struct VenusFid *afid, afs_int32 lockit,
 
 int afs_duplicate_nfs_fids=0;
 
-afs_int32 afs_NFSFindVCache(avcp, afid, lockit)
-     struct vcache **avcp;
-    struct VenusFid *afid;
-    afs_int32 lockit;
-{ /*afs_FindVCache*/
-
+afs_int32 afs_NFSFindVCache(struct vcache **avcp, struct VenusFid *afid)
+{
     register struct vcache *tvc;
     afs_int32 i;
-    afs_int32 retry = 0;
     afs_int32 count = 0;
     struct vcache *found_tvc = NULL;
 
     AFS_STATCNT(afs_FindVCache);
 
+#if defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
  loop:
+#endif
 
     ObtainSharedLock(&afs_xvcache,331); 
 
@@ -2487,7 +2528,7 @@ afs_int32 afs_NFSFindVCache(avcp, afid, lockit)
             /* Grab this vnode, possibly reactivating from the free list */
            int vg;
            AFS_GUNLOCK();
-            vg = vget((struct vnode *)tvc);
+            vg = vget(AFSTOV(tvc));
            AFS_GLOCK();
            if (vg) {
                /* This vnode no longer exists. */
@@ -2499,8 +2540,8 @@ afs_int32 afs_NFSFindVCache(avcp, afid, lockit)
                /* Duplicates */
 #ifdef AFS_OSF_ENV
                /* Drop our reference counts. */
-               vrele((struct vnode *)tvc);
-               vrele((struct vnode *)found_tvc);
+               vrele(AFSTOV(tvc));
+               vrele(AFSTOV(found_tvc));
 #endif
                afs_duplicate_nfs_fids++;
                ReleaseSharedLock(&afs_xvcache);
@@ -2514,6 +2555,7 @@ afs_int32 afs_NFSFindVCache(avcp, afid, lockit)
     /* should I have a read lock on the vnode here? */
     if (tvc) {
 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI53_ENV)
+        afs_int32 retry = 0;
         osi_vnhold(tvc, &retry); 
        if (retry) {
            count = 0;
@@ -2557,7 +2599,7 @@ afs_int32 afs_NFSFindVCache(avcp, afid, lockit)
 
     if (tvc)   afs_stats_cmperf.vcacheHits++;
     else       afs_stats_cmperf.vcacheMisses++;
-    if (afid->Cell == LOCALCELL)
+    if (afs_IsPrimaryCellNum(afid->Cell))
         afs_stats_cmperf.vlocalAccesses++;
     else
         afs_stats_cmperf.vremoteAccesses++;
@@ -2593,7 +2635,7 @@ void afs_vcacheInit(int astatSize)
         }
     }
 #else  /* AFS_OSF_ENV */
-    freeVCList = (struct vcache *)0;
+    freeVCList = NULL;
 #endif
 
     RWLOCK_INIT(&afs_xvcache, "afs_xvcache");
@@ -2609,8 +2651,8 @@ void afs_vcacheInit(int astatSize)
     for(i=0; i < astatSize-1; i++) {
        tvp[i].nextfree = &(tvp[i+1]);
     }  
-    tvp[astatSize-1].nextfree = (struct vcache *) 0;
-#ifdef AFS_AIX32_ENV
+    tvp[astatSize-1].nextfree = NULL;
+#ifdef  KERNEL_HAVE_PIN
     pin((char *)tvp, astatSize * sizeof(struct vcache));       /* XXX */    
 #endif
 #endif
@@ -2654,7 +2696,7 @@ void shutdown_vcache(void)
 #if    !defined(AFS_OSF_ENV)
     afs_osi_Free(Initial_freeVCList, afs_cacheStats * sizeof(struct vcache));
 #endif
-#ifdef AFS_AIX32_ENV
+#ifdef  KERNEL_HAVE_PIN
     unpin(Initial_freeVCList, afs_cacheStats * sizeof(struct vcache));
 #endif
 
@@ -2669,7 +2711,7 @@ void shutdown_vcache(void)
                tvc->mvid = (struct VenusFid*)0;
            }
 #ifdef AFS_AIX_ENV
-           aix_gnode_rele((struct vnode *)tvc);
+           aix_gnode_rele(AFSTOV(tvc));
 #endif
            if (tvc->linkData) {
                afs_osi_Free(tvc->linkData, strlen(tvc->linkData)+1);
@@ -2694,7 +2736,7 @@ void shutdown_vcache(void)
                    vms_delete(tvc->segid);
                    AFS_GLOCK();
                    tvc->segid = tvc->vmh = NULL;
-                   if (tvc->vrefCount) osi_Panic("flushVcache: vm race");
+                   if (VREFCOUNT(tvc)) osi_Panic("flushVcache: vm race");
                }
                if (tvc->credp) {
                    crfree(tvc->credp);