Oops, add the NMBCLUSTERS initialiser for the Alpha as well.
This commit is contained in:
parent
2084f96c7f
commit
a07089226d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42707
@ -23,7 +23,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: machdep.c,v 1.28 1998/12/23 11:50:50 dfr Exp $
|
||||
* $Id: machdep.c,v 1.29 1998/12/30 10:38:58 dfr Exp $
|
||||
*/
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -366,6 +366,12 @@ cpu_startup(dummy)
|
||||
*/
|
||||
{
|
||||
vm_offset_t mb_map_size;
|
||||
int xclusters;
|
||||
|
||||
/* Allow override of NMBCLUSTERS from the kernel environment */
|
||||
if (getenv_int("kern.ipc.nmbclusters", &xclusters) &&
|
||||
xclusters > nmbclusters)
|
||||
nmbclusters = xclusters;
|
||||
|
||||
mb_map_size = nmbufs * MSIZE + nmbclusters * MCLBYTES;
|
||||
mb_map_size = roundup2(mb_map_size, max(MCLBYTES, PAGE_SIZE));
|
||||
|
Loading…
Reference in New Issue
Block a user