Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/sys/arch/amiga/include Pull up following revision(s) (req...
details: https://anonhg.NetBSD.org/src/rev/61f09a0f2308
branches: netbsd-7
changeset: 799447:61f09a0f2308
user: snj <snj%NetBSD.org@localhost>
date: Mon Jun 29 17:21:27 2015 +0000
description:
Pull up following revision(s) (requested by phx in ticket #841):
sys/arch/amiga/include/vmparam.h: revision 1.43
Remove unused KUSER_AREA, SYSPTSIZE, USRPTSIZE.
Bump MAXTSIZ and MAXDSIZ to the same values atari is using.
This makes gcc 4.8 (/usr/libexec/cc1) load and execute.
diffstat:
sys/arch/amiga/include/vmparam.h | 15 ++++-----------
1 files changed, 4 insertions(+), 11 deletions(-)
diffs (46 lines):
diff -r 466fbcbccb0d -r 61f09a0f2308 sys/arch/amiga/include/vmparam.h
--- a/sys/arch/amiga/include/vmparam.h Mon Jun 29 17:20:04 2015 +0000
+++ b/sys/arch/amiga/include/vmparam.h Mon Jun 29 17:21:27 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.42 2011/02/08 20:20:08 rmind Exp $ */
+/* $NetBSD: vmparam.h,v 1.42.30.1 2015/06/29 17:21:27 snj Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -64,19 +64,19 @@
#ifndef USRSTACK
#define USRSTACK 0x1E000000
#endif
-#define KUSER_AREA (-UPAGES*PAGE_SIZE)
+
/*
* Virtual memory related constants, all in bytes
*/
#ifndef MAXTSIZ
-#define MAXTSIZ (6*1024*1024) /* max text size */
+#define MAXTSIZ (16*1024*1024) /* max text size */
#endif
#ifndef DFLDSIZ
#define DFLDSIZ (32*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (128*1024*1024) /* max data size */
+#define MAXDSIZ (256*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (2*1024*1024) /* initial stack size limit */
@@ -86,13 +86,6 @@
#endif
/*
- * Sizes of the system and user portions of the system page table.
- */
-/* SYSPTSIZE IS SILLY; IT SHOULD BE COMPUTED AT BOOT TIME */
-#define SYSPTSIZE (2 * NPTEPG) /* 16mb */
-#define USRPTSIZE (1 * NPTEPG) /* 16mb */
-
-/*
* PTEs for mapping user space into the kernel for phyio operations.
* One page is enough to handle 16Mb of simultaneous raw IO operations.
*/
Home |
Main Index |
Thread Index |
Old Index