diff options
Diffstat (limited to 'sys/conf/param.c')
-rw-r--r-- | sys/conf/param.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/conf/param.c b/sys/conf/param.c index ef98c59c6e25..454298416c6f 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -36,11 +36,9 @@ * SUCH DAMAGE. * * @(#)param.c 8.3 (Berkeley) 8/20/94 - * $Id: param.c,v 1.31 1998/11/05 14:28:17 dg Exp $ + * $Id: param.c,v 1.29 1998/06/30 21:25:35 phk Exp $ */ -#include <stddef.h> - #include "opt_sysvipc.h" #include "opt_param.h" @@ -97,12 +95,6 @@ int maxsockets = MAXSOCKETS; /* allocate 1/4th amount of virtual address space for mbufs XXX */ int nmbufs = NMBCLUSTERS * 4; -/* maximum # of sf_bufs (sendfile(2) zero-copy virtual buffers) */ -#ifndef NSFBUFS -#define NSFBUFS (512 + MAXUSERS * 16) -#endif -int nsfbufs = NSFBUFS; - /* * Values in support of System V compatible shared memory. XXX */ |