Module Name: src
Committed By: rin
Date: Sat Apr 17 13:25:57 UTC 2021
Modified Files:
src/sys/arch/powerpc/include/booke: vmparam.h
Log Message:
Sync MAXfoo params with oea:
MAXTSIZ: 512MB -> 128MB
MAXDSIZ: 3.25GB -> 1GB
There should be no particular reasons for having different values.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/powerpc/include/booke/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/powerpc/include/booke/vmparam.h
diff -u src/sys/arch/powerpc/include/booke/vmparam.h:1.8 src/sys/arch/powerpc/include/booke/vmparam.h:1.9
--- src/sys/arch/powerpc/include/booke/vmparam.h:1.8 Sat Apr 17 13:23:24 2021
+++ src/sys/arch/powerpc/include/booke/vmparam.h Sat Apr 17 13:25:57 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.8 2021/04/17 13:23:24 rin Exp $ */
+/* $NetBSD: vmparam.h,v 1.9 2021/04/17 13:25:57 rin Exp $ */
/*-
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -56,11 +56,11 @@
#endif
#ifndef MAXTSIZ
-#define MAXTSIZ (2*256*1024*1024) /* maximum text size */
+#define MAXTSIZ (128*1024*1024) /* maximum text size */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (13*256*1024*1024U) /* maximum data size */
+#define MAXDSIZ (1024*1024*1024) /* maximum data size */
#endif
#ifndef MAXSSIZ