no more vnode table or name cache table
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Wed, 11 Apr 1990 11:27:54 +0000 (03:27 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Wed, 11 Apr 1990 11:27:54 +0000 (03:27 -0800)
SCCS-vsn: sys/tahoe/tahoe/machdep.c 7.9

usr/src/sys/tahoe/tahoe/machdep.c

index 8c66bf3..49cb981 100644 (file)
@@ -3,7 +3,7 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
- *     @(#)machdep.c   7.8 (Berkeley) %G%
+ *     @(#)machdep.c   7.9 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
@@ -17,7 +17,6 @@
 #include "buf.h"
 #include "reboot.h"
 #include "conf.h"
 #include "buf.h"
 #include "reboot.h"
 #include "conf.h"
-#include "vnode.h"
 #include "file.h"
 #include "text.h"
 #include "clist.h"
 #include "file.h"
 #include "text.h"
 #include "clist.h"
@@ -113,7 +112,6 @@ startup(firstaddr)
         */
        valloc(cybuf, char, NCY * CYMAXIO);
 #endif
         */
        valloc(cybuf, char, NCY * CYMAXIO);
 #endif
-       valloclim(vnode, struct vnode, nvnode, vnodeNVNODE);
        valloclim(file, struct file, nfile, fileNFILE);
        valloclim(proc, struct proc, nproc, procNPROC);
        valloclim(text, struct text, ntext, textNTEXT);
        valloclim(file, struct file, nfile, fileNFILE);
        valloclim(proc, struct proc, nproc, procNPROC);
        valloclim(text, struct text, ntext, textNTEXT);
@@ -123,7 +121,6 @@ startup(firstaddr)
        valloc(argmap, struct map, ARGMAPSIZE);
        valloc(kernelmap, struct map, nproc);
        valloc(mbmap, struct map, nmbclusters/4);
        valloc(argmap, struct map, ARGMAPSIZE);
        valloc(kernelmap, struct map, nproc);
        valloc(mbmap, struct map, nmbclusters/4);
-       valloc(namecache, struct namecache, nchsize);
        valloc(kmemmap, struct map, ekmempt - kmempt);
        valloc(kmemusage, struct kmemusage, ekmempt - kmempt);
 #ifdef QUOTA
        valloc(kmemmap, struct map, ekmempt - kmempt);
        valloc(kmemusage, struct kmemusage, ekmempt - kmempt);
 #ifdef QUOTA