Bump NMBCLUSTERS to something a little more modern - 2048 for the

normal case and 4096 for the "options GATEWAY" case.
This commit is contained in:
simonb 2004-04-06 14:56:13 +00:00
parent fef14e4cd8
commit ad2144406e
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.33 2003/08/07 16:26:33 agc Exp $ */
/* $NetBSD: param.h,v 1.34 2004/04/06 14:56:13 simonb Exp $ */
/*
* Copyright (c) 1992, 1993
@ -148,9 +148,9 @@
#endif
#ifdef GATEWAY
#define NMBCLUSTERS 512 /* map size, max cluster allocation */
#define NMBCLUSTERS 4096 /* map size, max cluster allocation */
#else
#define NMBCLUSTERS 256 /* map size, max cluster allocation */
#define NMBCLUSTERS 2048 /* map size, max cluster allocation */
#endif
#endif