restore missing default
[unix-history] / usr / src / sys / conf / param.c
index 4838da7..a20d30a 100644 (file)
@@ -1,12 +1,8 @@
-/*     param.c 4.6     81/10/29        */
+/*     param.c 4.12    82/04/03        */
 
 #include "../h/param.h"
 #include "../h/systm.h"
 
 #include "../h/param.h"
 #include "../h/systm.h"
-#ifdef BBNNET
-#include "../bbnnet/net.h"
-#include "../bbnnet/imp.h"
-#include "../bbnnet/ucb.h"
-#endif BBNNET
+#include "../h/socket.h"
 #include "../h/dir.h"
 #include "../h/user.h"
 #include "../h/proc.h"
 #include "../h/dir.h"
 #include "../h/user.h"
 #include "../h/proc.h"
@@ -16,7 +12,7 @@
 #include "../h/callout.h"
 #include "../h/clist.h"
 #include "../h/cmap.h"
 #include "../h/callout.h"
 #include "../h/clist.h"
 #include "../h/cmap.h"
-#include "../h/port.h"
+#include "../h/mbuf.h"
 /*
  * System parameter formulae.
  *
 /*
  * System parameter formulae.
  *
@@ -34,15 +30,11 @@ int dstflag = DST;
 int    nproc = NPROC;
 int    ntext = 24 + MAXUSERS;
 int    ninode = (NPROC + 16 + MAXUSERS) + 32;
 int    nproc = NPROC;
 int    ntext = 24 + MAXUSERS;
 int    ninode = (NPROC + 16 + MAXUSERS) + 32;
-int    nfile = 8 * (NPROC + 16 + MAXUSERS) / 10 + 32;
+int    nfile = 16 * (NPROC + 16 + MAXUSERS) / 10 + 32;
 int    ncallout = 16 + MAXUSERS;
 int    nclist = 100 + 16 * MAXUSERS;
 int    nport = NPROC / 2;
 int    ncallout = 16 + MAXUSERS;
 int    nclist = 100 + 16 * MAXUSERS;
 int    nport = NPROC / 2;
-#ifdef BBNNET
-int     nnetpages = NNETPAGES;
-int     nnetcon = NCON;
-int     nhost = NHOST;
-#endif BBNNET
+int     nmbclusters = NMBCLUSTERS;
 
 /*
  * These are initialized at bootstrap time
 
 /*
  * These are initialized at bootstrap time
@@ -65,10 +57,3 @@ short        *swsize;
 int    *swpf;
 char   *buffers;
 struct cmap *cmap, *ecmap;
 int    *swpf;
 char   *buffers;
 struct cmap *cmap, *ecmap;
-#ifdef BBNNET
-struct  ucb *contab, *conNCON;
-struct  host *host, *hostNHOST;
-struct  net netcb;
-struct  net_stat netstat;
-struct  impstat imp_stat;
-#endif BBNNET