Module Name: src Committed By: jmcneill Date: Sat May 12 15:14:49 UTC 2018
Modified Files: src/sys/arch/aarch64/include: vmparam.h Log Message: Increase PAGER_MAP_DEFAULT_SIZE to 512MB (from 16MB) To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/arch/aarch64/include/vmparam.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/aarch64/include/vmparam.h diff -u src/sys/arch/aarch64/include/vmparam.h:1.3 src/sys/arch/aarch64/include/vmparam.h:1.4 --- src/sys/arch/aarch64/include/vmparam.h:1.3 Sun Apr 1 04:35:03 2018 +++ src/sys/arch/aarch64/include/vmparam.h Sat May 12 15:14:49 2018 @@ -1,4 +1,4 @@ -/* $NetBSD: vmparam.h,v 1.3 2018/04/01 04:35:03 ryo Exp $ */ +/* $NetBSD: vmparam.h,v 1.4 2018/05/12 15:14:49 jmcneill Exp $ */ /*- * Copyright (c) 2014 The NetBSD Foundation, Inc. @@ -37,6 +37,11 @@ #define __USE_TOPDOWN_VM /* + * Default pager_map of 16MB is small and we have plenty of VA to burn. + */ +#define PAGER_MAP_DEFAULT_SIZE (512 * 1024 * 1024) + +/* * AARCH64 supports 3 page sizes: 4KB, 16KB, 64KB. Each page table can * even have its own page size. */